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:Jump to solution
remove $title and use getTitle
```php
public function getTitle(): string|Htmlable
{
return __('Broadcast');...
2 Replies