Laravel Nova Group Pages
For example, if you want to group a "Pages" Nova resource then you can write it as follows.
/** * The logical group associated with the resource. * * @var string */ public static $group = 'Pages';
Laravel Nova Group Category
To group a resource that contains a category and as such, you can name it as "Category".
/** * The logical group associated with the resource. * * @var string */ public static $group = 'Category';
Leave a reply