Neuordnung des SuperAdminBackends
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2025-12-31 10:06:21 +01:00
parent d7c2f85eeb
commit 8e4d4c2ff6
34 changed files with 526 additions and 131 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Filament\Resources\PhotoboothSettings;
use App\Filament\Clusters\RareAdmin\RareAdminCluster;
use App\Filament\Resources\PhotoboothSettings\Pages\EditPhotoboothSetting;
use App\Filament\Resources\PhotoboothSettings\Pages\ListPhotoboothSettings;
use App\Filament\Resources\PhotoboothSettings\Schemas\PhotoboothSettingForm;
@@ -20,6 +21,8 @@ class PhotoboothSettingResource extends Resource
{
protected static ?string $model = PhotoboothSetting::class;
protected static ?string $cluster = RareAdminCluster::class;
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedRectangleStack;
protected static UnitEnum|string|null $navigationGroup = null;
@@ -28,7 +31,7 @@ class PhotoboothSettingResource extends Resource
public static function getNavigationGroup(): UnitEnum|string|null
{
return __('admin.nav.platform_management');
return __('admin.nav.storage');
}
public static function form(Schema $schema): Schema