[admin] change filter position above content

This commit is contained in:
xiaomlove
2022-10-22 01:49:34 +08:00
parent f2010a9bda
commit 348112364c
20 changed files with 136 additions and 10 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace App\Filament;
use Filament\Resources\Pages\ManageRecords;
use Filament\Tables\Filters\Layout;
class PageListSingle extends ManageRecords
{
protected ?string $maxContentWidth = 'full';
protected function getTableFiltersLayout(): ?string
{
return Layout::AboveContent;
}
}