Files
hr/app/Filament/Resources/Departments/Pages/ViewDepartment.php
2026-07-30 17:24:40 +05:00

20 lines
427 B
PHP

<?php
namespace App\Filament\Resources\Departments\Pages;
use App\Filament\Resources\Departments\DepartmentResource;
use Filament\Actions\EditAction;
use Filament\Resources\Pages\ViewRecord;
class ViewDepartment extends ViewRecord
{
protected static string $resource = DepartmentResource::class;
protected function getHeaderActions(): array
{
return [
EditAction::make(),
];
}
}