In my application I have a form that validates and inserts records into the table.
Upon successful insertion into the table the controller redirect()
s back to the page ass follows:
return redirect('/');
This works fine, except for the fact that it doesn't tell the user of whether the insertion took place at all or not as only the blank form remains on the page while no success message is displayed.
How can I redirect along with data (some form of return code
) so that I can display a simple success message?
return redirect('/')->with('message', 'Message sent!');
Read more about redirects in Laravel.
Be sure that Session is working properly to get flash message working.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With