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';
Solution
it was:
protected ?string $heading = 'Custom Page Heading';
protected ?string $subheading = 'Custom Page Heading';
protected ?string $heading = 'Custom Page Heading';
protected ?string $subheading = 'Custom Page Heading';