Load Custom Page in a modal from slide out.
How can I load a filament custom page inside a modal from an action.
I have a Custom page that extends Page.
And from inside another custom page when I click on an action I want that other page to load.
Action::make('test')
>modalContent(view('filament.app.pages.store'))
->action(function ($record) {
})
->slideOver()
this is an exmaple... it doesn't work.. Actually the modal doesn't even slide out.
Basically I'm looking to render a Custom page inside the Slide out Modal.
Thanks
0 Replies