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\Programs;
|
|
|
|
use App\Filament\Resources\Programs\Pages\CreateProgram;
|
|
use App\Filament\Resources\Programs\Pages\EditProgram;
|
|
use App\Filament\Resources\Programs\Pages\ListPrograms;
|
|
use App\Filament\Resources\Programs\Schemas\ProgramForm;
|
|
use App\Filament\Resources\Programs\Tables\ProgramsTable;
|
|
use BackedEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Table;
|
|
use Functional\Programs\Models\Program;
|
|
use UnitEnum;
|
|
|
|
class ProgramResource extends Resource
|
|
{
|
|
protected static ?string $model = Program::class;
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedCalendarDays;
|
|
|
|
protected static string|UnitEnum|null $navigationGroup = 'Entraînement';
|
|
|
|
protected static ?int $navigationSort = 2;
|
|
|
|
protected static ?string $modelLabel = 'programme';
|
|
|
|
protected static ?string $pluralModelLabel = 'programmes';
|
|
|
|
protected static ?string $recordTitleAttribute = 'name';
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return ProgramForm::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return ProgramsTable::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' => ListPrograms::route('/'),
|
|
'create' => CreateProgram::route('/create'),
|
|
'edit' => EditProgram::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|