mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-05-18 06:37:28 +08:00
21 lines
446 B
PHP
21 lines
446 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Filament\Resources\Permission\RoleResource\Pages;
|
||
|
|
|
||
|
|
use App\Filament\PageList;
|
||
|
|
use App\Filament\Resources\Permission\RoleResource;
|
||
|
|
use Filament\Pages\Actions;
|
||
|
|
use Filament\Resources\Pages\ListRecords;
|
||
|
|
|
||
|
|
class ListRoles extends PageList
|
||
|
|
{
|
||
|
|
protected static string $resource = RoleResource::class;
|
||
|
|
|
||
|
|
protected function getActions(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
Actions\CreateAction::make(),
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|