mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
26 lines
526 B
PHP
26 lines
526 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 Layout::AboveContent;
|
|
}
|
|
|
|
protected function getTableRecordUrlUsing(): ?Closure
|
|
{
|
|
return function (Model $record): ?string {
|
|
return null;
|
|
};
|
|
}
|
|
}
|