Files

26 lines
549 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Filament\Resources\System\TorrentStateResource\Pages;
use App\Filament\Resources\System\TorrentStateResource;
use Filament\Actions\CreateAction;
use Filament\Resources\Pages\ManageRecords;
class ManageTorrentStates extends ManageRecords
{
protected static string $resource = TorrentStateResource::class;
2024-12-25 23:09:07 +08:00
protected function getHeaderActions(): array
{
return [
CreateAction::make(),
];
}
protected function isTablePaginationEnabled(): bool
{
return false;
}
}