Heading and Subheading not displayed

Hi guys, this is my code, I want to customize the page title and add a subtitle:


class CategoryResource extends Resource { protected static ?string $model = Category::class; protected static ?string $title = 'Categorie'; protected static ?string $subheading = 'Tutte le categorie'; protected static ?string $navigationIcon = 'heroicon-o-tag'; protected static ?string $navigationGroup = 'Dati'; protected static ?string $navigationLabel = 'Categorie';
Screenshot_2024-01-18_alle_10.25.48.png
Solution
it was:

protected ?string $heading = 'Custom Page Heading';
protected ?string $subheading = 'Custom Page Heading';
Was this page helpful?