File: /home/posscale/www/printmanager/vendor/filament/filament/src/Panel/Concerns/HasBrandName.php
<?php
namespace Filament\Panel\Concerns;
use Closure;
use Illuminate\Contracts\Support\Htmlable;
trait HasBrandName
{
protected string | Htmlable | Closure | null $brandName = null;
public function brandName(string | Htmlable | Closure | null $name): static
{
$this->brandName = $name;
return $this;
}
public function getBrandName(): string | Htmlable
{
return $this->evaluate($this->brandName) ?? config('app.name');
}
}