F
Filament14mo ago
dodyrw

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 ```php public function getTitle(): string|Htmlable { return __('Broadcast');...
Jump to solution
2 Replies
Solution
Lara Zeus
Lara Zeus14mo ago
remove $title and use getTitle
public function getTitle(): string|Htmlable
{
return __('Broadcast');
}
public function getTitle(): string|Htmlable
{
return __('Broadcast');
}
dodyrw
dodyrwOP14mo ago
Thank you.
Want results from more Discord servers?
Add your server