mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
27 lines
580 B
PHP
27 lines
580 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\System\TorrentStateResource\Pages;
|
|
|
|
use App\Filament\Resources\System\TorrentStateResource;
|
|
use Filament\Pages\Actions;
|
|
use Filament\Resources\Pages\ManageRecords;
|
|
use Nexus\Database\NexusDB;
|
|
|
|
class ManageTorrentStates extends ManageRecords
|
|
{
|
|
protected static string $resource = TorrentStateResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
// Actions\CreateAction::make(),
|
|
];
|
|
}
|
|
|
|
protected function isTablePaginationEnabled(): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
}
|