FilamentF
Filament3y ago
Dody

How to translate the custom page tile

I have a custom page with title
protected static ?string $title = 'Broadcast';

How to localize it because the following code is error
protected static ?string $title = __('Broadcast');

Thank you
Solution
remove $title and use getTitle
public function getTitle(): string|Htmlable
    {
        return __('Broadcast');
    }
Was this page helpful?