F
Filament6mo ago
Jakub

default slideover

I swear I seen this somewhere haha There was a way to make the default for all modals to be slide overs, instead of setting it each time Anyone know?
Solution:
In the boot method of AppServiceProvider add ``` CreateAction::configureUsing( function ($action){ return $action->slideOver();...
Jump to solution
2 Replies
Solution
Archie
Archie6mo ago
In the boot method of AppServiceProvider add
CreateAction::configureUsing(
function ($action){
return $action->slideOver();
})
CreateAction::configureUsing(
function ($action){
return $action->slideOver();
})
Jakub
Jakub6mo ago
tytytyt