Files
nexusphp/app/Filament/PageListSingle.php

17 lines
315 B
PHP
Raw Normal View History

<?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;
}
}