- Move ReviewPackResource from 'Monitoring' to new 'Reporting' nav group - Fix duplicate 'Inventory' sidebar entries: set $navigationGroup + $navigationLabel on InventoryCluster so it renders inside 'Inventory' group as 'Items' - Change header CTA button color from warning to primary on ListInventoryItems and ListEntraGroups
22 lines
551 B
PHP
22 lines
551 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Clusters\Inventory;
|
|
|
|
use BackedEnum;
|
|
use Filament\Clusters\Cluster;
|
|
use Filament\Pages\Enums\SubNavigationPosition;
|
|
use UnitEnum;
|
|
|
|
class InventoryCluster extends Cluster
|
|
{
|
|
protected static ?SubNavigationPosition $subNavigationPosition = SubNavigationPosition::Start;
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-squares-2x2';
|
|
|
|
protected static string|UnitEnum|null $navigationGroup = 'Inventory';
|
|
|
|
protected static ?string $navigationLabel = 'Items';
|
|
}
|