Files
nexusphp/app/Filament/PageListSingle.php

24 lines
493 B
PHP
Raw Normal View History

<?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
{
2024-12-25 23:09:07 +08:00
return \Filament\Tables\Enums\FiltersLayout::AboveContent;
}
2024-03-11 02:12:17 +08:00
protected function getTableRecordActionUsing(): ?Closure
{
2024-03-11 02:12:17 +08:00
return null;
}
}