Files
nexusphp/app/Filament/PageListSingle.php
2022-10-22 01:49:34 +08:00

17 lines
315 B
PHP

<?php
namespace App\Filament;
use Filament\Resources\Pages\ManageRecords;
use Filament\Tables\Filters\Layout;
class PageListSingle extends ManageRecords
{
protected ?string $maxContentWidth = 'full';
protected function getTableFiltersLayout(): ?string
{
return Layout::AboveContent;
}
}