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