61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Groups;
|
|
|
|
use App\Filament\Resources\Groups\Pages\CreateGroup;
|
|
use App\Filament\Resources\Groups\Pages\EditGroup;
|
|
use App\Filament\Resources\Groups\Pages\ListGroups;
|
|
use App\Filament\Resources\Groups\RelationManagers\PilgrimsRelationManager;
|
|
use App\Filament\Resources\Groups\Schemas\GroupForm;
|
|
use App\Filament\Resources\Groups\Tables\GroupsTable;
|
|
use App\Models\Group;
|
|
use BackedEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Tables\Table;
|
|
use Illuminate\Contracts\Support\Htmlable;
|
|
|
|
class GroupResource extends Resource
|
|
{
|
|
protected static ?string $model = Group::class;
|
|
|
|
protected static ?string $navigationLabel = 'Toparlar';
|
|
|
|
protected static ?string $pluralLabel = 'Toparlar';
|
|
|
|
protected static ?string $recordTitleAttribute = 'name';
|
|
|
|
protected static ?int $navigationSort = 1;
|
|
|
|
public static function getNavigationIcon(): string | BackedEnum | Htmlable | null
|
|
{
|
|
return 'icon-flight-takeoff';
|
|
}
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return GroupForm::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return GroupsTable::configure($table);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
PilgrimsRelationManager::class,
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListGroups::route('/'),
|
|
'create' => CreateGroup::route('/create'),
|
|
'edit' => EditGroup::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|