mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
13 lines
400 B
PHP
13 lines
400 B
PHP
<?php
|
|
namespace Modules\Admin\Filament\Resources\DistrictResource\Pages;
|
|
|
|
use Filament\Actions\CreateAction;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
use Modules\Admin\Filament\Resources\DistrictResource;
|
|
|
|
class ListDistricts extends ListRecords
|
|
{
|
|
protected static string $resource = DistrictResource::class;
|
|
protected function getHeaderActions(): array { return [CreateAction::make()]; }
|
|
}
|