mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
23 lines
452 B
PHP
23 lines
452 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\System\SectionResource\Pages;
|
|
|
|
use App\Filament\PageList;
|
|
use App\Filament\Resources\System\SectionResource;
|
|
use Filament\Pages\Actions;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
|
|
class ListSections extends PageList
|
|
{
|
|
protected static string $resource = SectionResource::class;
|
|
|
|
protected function getActions(): array
|
|
{
|
|
return [
|
|
Actions\CreateAction::make(),
|
|
];
|
|
}
|
|
|
|
|
|
}
|