Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display a success message upon redirection from controller in Laravel?

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?

like image 227
ikartik90 Avatar asked Jan 08 '23 15:01

ikartik90


1 Answers

return redirect('/')->with('message', 'Message sent!');

Read more about redirects in Laravel.

Be sure that Session is working properly to get flash message working.

like image 118
Limon Monte Avatar answered Jan 17 '23 10:01

Limon Monte