mirror of
https://github.com/pelican-dev/panel.git
synced 2026-03-01 11:21:31 +03:00
20 lines
400 B
PHP
20 lines
400 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Filament\Resources\NodeResource\Pages;
|
||
|
|
|
||
|
|
use App\Filament\Resources\NodeResource;
|
||
|
|
use Filament\Actions;
|
||
|
|
use Filament\Resources\Pages\ListRecords;
|
||
|
|
|
||
|
|
class ListNodes extends ListRecords
|
||
|
|
{
|
||
|
|
protected static string $resource = NodeResource::class;
|
||
|
|
|
||
|
|
protected function getHeaderActions(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
Actions\CreateAction::make(),
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|