mirror of
https://github.com/anna-sara/vbytes_lan.git
synced 2025-12-24 13:27:12 +01:00
48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Volunteers;
|
|
|
|
use App\Filament\Resources\Volunteers\Pages\CreateVolunteer;
|
|
use App\Filament\Resources\Volunteers\Pages\EditVolunteer;
|
|
use App\Filament\Resources\Volunteers\Pages\ListVolunteers;
|
|
use App\Filament\Resources\Volunteers\Schemas\VolunteerForm;
|
|
use App\Filament\Resources\Volunteers\Tables\VolunteersTable;
|
|
use App\Models\Volunteer;
|
|
use BackedEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Table;
|
|
|
|
class VolunteerResource extends Resource
|
|
{
|
|
protected static ?string $model = Volunteer::class;
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedRectangleStack;
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return VolunteerForm::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return VolunteersTable::configure($table);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListVolunteers::route('/'),
|
|
'create' => CreateVolunteer::route('/create'),
|
|
//'edit' => EditVolunteer::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|