File: /home/posscale/public_html/printmanager/vendor/filament/filament/src/Panel/Concerns/HasFont.php
<?php
namespace Filament\Panel\Concerns;
use Filament\FontProviders\BunnyFontProvider;
use Illuminate\Contracts\Support\Htmlable;
trait HasFont
{
protected ?string $fontFamily = null;
protected string $fontProvider = BunnyFontProvider::class;
protected ?string $fontUrl = null;
public function font(string $family, ?string $url = null, ?string $provider = null): static
{
$this->fontFamily = $family;
$this->fontUrl = $url;
if (filled($provider)) {
$this->fontProvider = $provider;
}
return $this;
}
public function getFontFamily(): string
{
return $this->fontFamily ?? 'Inter';
}
public function getFontHtml(): Htmlable
{
return app($this->getFontProvider())->getHtml(
$this->getFontFamily(),
$this->getFontUrl(),
);
}
public function getFontProvider(): string
{
return $this->fontProvider;
}
public function getFontUrl(): ?string
{
return $this->fontUrl;
}
}