Dr-Panel/app/Filament/Resources/SurgeryAppointmentResource/Pages/ListSurgeryAppointments.php

23 lines
529 B
PHP

<?php
declare(strict_types=1);
namespace App\Filament\Resources\SurgeryAppointmentResource\Pages;
use App\Filament\Resources\SurgeryAppointmentResource;
use Filament\Actions\CreateAction;
use Filament\Resources\Pages\ListRecords;
class ListSurgeryAppointments extends ListRecords
{
protected static string $resource = SurgeryAppointmentResource::class;
protected function getHeaderActions(): array
{
return [
CreateAction::make()
->icon('heroicon-o-plus'),
];
}
}