CAPS in resource headings

I have set up a $modelLabel and $navigationLabel which includes CAPS as part of the string. This appears correctly in navigation and the create button for the resource. But the label is converted to title case in the resource title. How can I force this to keep the correct case?

protected static ?string $modelLabel = 'CUSTOM User';
protected static ?string $navigationLabel = 'CUSTOM Users';
Screenshot_2023-09-07_at_15.08.36.png
Solution
Aha, nice. Setting protected static ?string $title = 'CUSTOM Users'; in the "ManageRecords" Page works. Thanks @Patrick Boivin
Was this page helpful?