26 lines
584 B
PHP
26 lines
584 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\PatientResource\Pages;
|
|
|
|
use App\Filament\Resources\PatientResource;
|
|
use Filament\Actions\CreateAction;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
use Filament\Support\Enums\Width;
|
|
|
|
class ListPatients extends ListRecords
|
|
{
|
|
protected static string $resource = PatientResource::class;
|
|
|
|
protected Width|string|null $maxContentWidth = Width::Full;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
CreateAction::make()
|
|
->icon('heroicon-o-plus'),
|
|
];
|
|
}
|
|
}
|