mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
25 lines
525 B
PHP
25 lines
525 B
PHP
<?php
|
|
|
|
namespace App\Filament;
|
|
|
|
use Filament\Support\Enums\Width;
|
|
use Filament\Tables\Enums\FiltersLayout;
|
|
use Closure;
|
|
use Filament\Resources\Pages\ManageRecords;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PageListSingle extends ManageRecords
|
|
{
|
|
protected Width|string|null $maxContentWidth = 'full';
|
|
|
|
protected function getTableFiltersLayout(): FiltersLayout
|
|
{
|
|
return FiltersLayout::AboveContent;
|
|
}
|
|
|
|
protected function getTableRecordActionUsing(): ?Closure
|
|
{
|
|
return null;
|
|
}
|
|
}
|