Hey!
I am currently trying to figure out on why my navigation child item does not seem to work.
Current my navigation has a Group with in the resource items and i want to add a child to this item named ItemStudents
Code:
class ItemStudentResource extends Resource
{
protected static ?string $model = ItemStudent::class;
protected static ?string $navigationIcon = 'heroicon-o-shopping-bag';
protected static ?string $modelLabel = 'Item Inventory';
protected static ?string $navigationParentItem = 'Items';
public static ?string $navigationGroup = 'Stuvatar';
}
class ItemResource extends Resource
{
protected static ?string $model = Item::class;
protected static ?string $navigationIcon = 'heroicon-o-cube';
public static ?string $navigationGroup = 'Stuvatar';
protected static ?string $navigationLabel = 'Items';
}