mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
24 lines
493 B
PHP
24 lines
493 B
PHP
<?php
|
|
|
|
namespace App\Filament;
|
|
|
|
use Closure;
|
|
use Filament\Resources\Pages\ManageRecords;
|
|
use Filament\Tables\Filters\Layout;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PageListSingle extends ManageRecords
|
|
{
|
|
protected ?string $maxContentWidth = 'full';
|
|
|
|
protected function getTableFiltersLayout(): ?string
|
|
{
|
|
return \Filament\Tables\Enums\FiltersLayout::AboveContent;
|
|
}
|
|
|
|
protected function getTableRecordActionUsing(): ?Closure
|
|
{
|
|
return null;
|
|
}
|
|
}
|