Build & Deploy / build (push) Successful in 19s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
68 lines
1.8 KiB
PHP
68 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Routines;
|
|
|
|
use App\Filament\Resources\Routines\Pages\CreateRoutine;
|
|
use App\Filament\Resources\Routines\Pages\EditRoutine;
|
|
use App\Filament\Resources\Routines\Pages\ListRoutines;
|
|
use App\Filament\Resources\Routines\Schemas\RoutineForm;
|
|
use App\Filament\Resources\Routines\Tables\RoutinesTable;
|
|
use BackedEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Table;
|
|
use Functional\Routines\Models\Routine;
|
|
use UnitEnum;
|
|
|
|
class RoutineResource extends Resource
|
|
{
|
|
protected static ?string $model = Routine::class;
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedClipboardDocumentList;
|
|
|
|
protected static string|UnitEnum|null $navigationGroup = 'Entraînement';
|
|
|
|
protected static ?int $navigationSort = 1;
|
|
|
|
protected static ?string $modelLabel = 'routine';
|
|
|
|
protected static ?string $pluralModelLabel = 'routines';
|
|
|
|
protected static ?string $recordTitleAttribute = 'name';
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return RoutineForm::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return RoutinesTable::configure($table);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array<int, string>
|
|
*/
|
|
public static function getGloballySearchableAttributes(): array
|
|
{
|
|
return ['name', 'slug', 'user.name'];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListRoutines::route('/'),
|
|
'create' => CreateRoutine::route('/create'),
|
|
'edit' => EditRoutine::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|