Weccop
`EditAction` and `DeleteAction` on a ViewRecord's `getHeaderActions` method throws an error
Action\EditAction::class,
Action\DeleteAction::class,
I thinks this will solve it. Or Change it to this:
EditAction::class,
DeleteAction::class,
And change the use from:
use Filament\Actions;
to
use Filament\Actions\Action;
https://filamentphp.com/docs/3.x/panels/pages#header-actions
7 replies
Modify the initial query when loading a table
https://filamentphp.com/docs/3.x/panels/resources/getting-started#customizing-the-resource-eloquent-query I think this is what you are looking for.
7 replies
Manage business hours
Design wise I dont think so, but most elements are available:
https://filamentphp.com/docs/3.x/forms/fields/toggle
https://filamentphp.com/docs/3.x/forms/fields/date-time-picker#overview
13 replies
Open modal from custom page
Got it working with the mountAction option. I call a method in the livewire component using wire:click and in this method I mount the action. This results in opening an slide over :). Thanks for pointing me into the right direction.
10 replies
2 different widgets in the same row
Isnt this the solution?
https://filamentphp.com/docs/2.x/admin/pages/widgets#customizing-the-widgets-grid
7 replies