Filament form redirect to view on submit
I am using filament both as a panel and as standalone forms for public facing. I have a standalone form that I would like to redirect the user to a regular Laravel view with a summary. I may be missing something really simple here but I can't seem to figure out how to do this or if there would be a better way?
1 Reply
I may be missing something really simple here but I can't seem to figure out how to do this or if there would be a better way?Wouldn't that be just a
return redirect()
after the save logic?