File: /home/posscale/public_html/printmanager/vendor/filament/support/src/Concerns/HasPlaceholder.php
<?php
namespace Filament\Support\Concerns;
use Closure;
use Illuminate\Contracts\Support\Htmlable;
trait HasPlaceholder
{
protected string | Htmlable | Closure | null $placeholder = null;
public function placeholder(string | Htmlable | Closure | null $placeholder): static
{
$this->placeholder = $placeholder;
return $this;
}
public function getPlaceholder(): string | Htmlable | null
{
return $this->evaluate($this->placeholder);
}
}