File: /home/posscale/public_html/printmanager/vendor/filament/support/src/Concerns/CanBeLazy.php
<?php
namespace Filament\Support\Concerns;
use Illuminate\Contracts\View\View;
trait CanBeLazy
{
protected static bool $isLazy = true;
protected ?string $placeholderHeight = null;
public static function isLazy(): bool
{
return static::$isLazy;
}
public function placeholder(): View
{
return view(
'filament::components.loading-section',
[
'height' => $this->getPlaceholderHeight(),
...$this->getPlaceholderData(),
],
);
}
/**
* @return array<string, mixed>
*/
public function getPlaceholderData(): array
{
return [
//
];
}
public function getPlaceholderHeight(): ?string
{
return $this->placeholderHeight;
}
}