init section

This commit is contained in:
xiaomlove
2022-09-06 20:45:29 +08:00
parent fb329f72cc
commit f68b88f754
16 changed files with 496 additions and 5 deletions
@@ -0,0 +1,20 @@
<?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(),
];
}
}