zander9255
Getting rid of create button
In your app/Filament/Resources/<YourResource>/Pages/ there should be a list file there.
protected function getHeaderActions(): array
{
return [
//Actions\CreateAction::make(),
];
}
That is how I got rid of my button.
6 replies
Filament Table Filters
Edit: This did the trick, leaving the URL here in case it helps someone else in future
https://laravel.com/docs/11.x/eloquent#query-scopes
7 replies