session message
I need to throw some exception that will be handled in the admin panel and on the site.
I juas want to redirect back with session message, like that:
$exceptions->render(function (ExternalServiceException $e) {
return back()->with([
'error' => 'error...',
'status' => $e->getMessage(),
]);
});
but filament didn't show any message!
how can I solve it?0 Replies