You've already forked Atomcms-edit
24 lines
536 B
PHP
Executable File
24 lines
536 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\Hotel\StaffApplications\Pages;
|
|
|
|
use App\Filament\Resources\Hotel\StaffApplications\StaffApplicationResource;
|
|
use Filament\Actions\CreateAction;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
|
|
class ListStaffApplications extends ListRecords
|
|
{
|
|
#[\Override]
|
|
protected static string $resource = StaffApplicationResource::class;
|
|
|
|
#[\Override]
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
CreateAction::make(),
|
|
];
|
|
}
|
|
}
|