78 lines
2.2 KiB
PHP
78 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\Departments;
|
|
|
|
use App\Filament\Resources\Departments\Pages\CreateDepartment;
|
|
use App\Filament\Resources\Departments\Pages\EditDepartment;
|
|
use App\Filament\Resources\Departments\Pages\ListDepartments;
|
|
use App\Filament\Resources\Departments\Pages\ViewDepartment;
|
|
use App\Filament\Resources\Departments\Schemas\DepartmentForm;
|
|
use App\Filament\Resources\Departments\Schemas\DepartmentInfolist;
|
|
use App\Filament\Resources\Departments\Tables\DepartmentsTable;
|
|
use App\Models\Department;
|
|
use BackedEnum;
|
|
use UnitEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Table;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
|
|
|
class DepartmentResource extends Resource
|
|
{
|
|
protected static ?string $model = Department::class;
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedBuildingOffice2;
|
|
|
|
protected static string | UnitEnum | null $navigationGroup = 'Organization';
|
|
|
|
protected static ?int $navigationSort = 1;
|
|
|
|
protected static ?string $recordTitleAttribute = 'name';
|
|
|
|
protected static bool $isGloballySearchable = false;
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return DepartmentForm::configure($schema);
|
|
}
|
|
|
|
public static function infolist(Schema $schema): Schema
|
|
{
|
|
return DepartmentInfolist::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return DepartmentsTable::configure($table);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListDepartments::route('/'),
|
|
'create' => CreateDepartment::route('/create'),
|
|
'view' => ViewDepartment::route('/{record}'),
|
|
'edit' => EditDepartment::route('/{record}/edit'),
|
|
];
|
|
}
|
|
|
|
public static function getRecordRouteBindingEloquentQuery(): Builder
|
|
{
|
|
return parent::getRecordRouteBindingEloquentQuery()
|
|
->withoutGlobalScopes([
|
|
SoftDeletingScope::class,
|
|
]);
|
|
}
|
|
}
|