2022-10-22 01:49:34 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Filament;
|
|
|
|
|
|
2022-10-28 14:17:10 +08:00
|
|
|
use Closure;
|
2022-10-22 01:49:34 +08:00
|
|
|
use Filament\Resources\Pages\ManageRecords;
|
|
|
|
|
use Filament\Tables\Filters\Layout;
|
2022-10-28 14:17:10 +08:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2022-10-22 01:49:34 +08:00
|
|
|
|
|
|
|
|
class PageListSingle extends ManageRecords
|
|
|
|
|
{
|
|
|
|
|
protected ?string $maxContentWidth = 'full';
|
|
|
|
|
|
|
|
|
|
protected function getTableFiltersLayout(): ?string
|
|
|
|
|
{
|
|
|
|
|
return Layout::AboveContent;
|
|
|
|
|
}
|
2022-10-28 14:17:10 +08:00
|
|
|
|
2024-03-11 02:12:17 +08:00
|
|
|
protected function getTableRecordActionUsing(): ?Closure
|
2022-10-28 14:17:10 +08:00
|
|
|
{
|
2024-03-11 02:12:17 +08:00
|
|
|
return null;
|
2022-10-28 14:17:10 +08:00
|
|
|
}
|
2022-10-22 01:49:34 +08:00
|
|
|
}
|