2022-07-09 18:06:09 +08:00
|
|
|
<?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;
|
|
|
|
|
|
2024-12-25 23:09:07 +08:00
|
|
|
protected function getHeaderActions(): array
|
2022-07-09 18:06:09 +08:00
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
// Actions\CreateAction::make(),
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function isTablePaginationEnabled(): bool
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|