mirror of
https://github.com/anna-sara/vbytes_lan.git
synced 2025-12-24 13:27:12 +01:00
19 lines
429 B
PHP
19 lines
429 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Volunteers\Pages;
|
|
|
|
use App\Filament\Resources\Volunteers\VolunteerResource;
|
|
use Filament\Actions\CreateAction;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
|
|
class ListVolunteers extends ListRecords
|
|
{
|
|
protected static string $resource = VolunteerResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
CreateAction::make(),
|
|
];
|
|
}
|
|
}
|