FilamentF
Filament14mo ago
Matthew

Override configureUsing ?

If I have a service provider with a boot method like:

    public function boot() : void
    {
        CreateAction::configureUsing(function ($action) {
            return $action->slideOver();
        });
... 


How do I override a specific instance that I don't want as slide over ?

I've tried ->slideover(false) & ->modal() without success.

Thanks
Solution
slideOver(false) should suffice on the actually action
Was this page helpful?