[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
+6
View File
@@ -3,6 +3,7 @@
namespace App\Filament;
use Filament\Resources\Pages\ListRecords;
use Filament\Tables\Filters\Layout;
use Illuminate\Database\Eloquent\Model;
class PageList extends ListRecords
@@ -15,4 +16,9 @@ class PageList extends ListRecords
return null;
};
}
protected function getTableFiltersLayout(): ?string
{
return Layout::AboveContent;
}
}