Hello guys if you are new in Laravel 8 then please check below links for more tutorials:
Guys here is the working code snippet for Return success message to Laravel view:
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to Return success message to laravel view? Like I always say that laravel is the best Mvc php framework.
If you want to return success or error message to laravel from laravel controller and then below code will be helpful:
// Controller code if ($mail) { return redirect() ->back() ->with('success', 'Your message has been sent successfully!'); } return redirect() ->back() ->withInput() ->with('error', 'There was a failure while sending the message!'); //View code @if (isset($error)) <div class="col-sm-12"> <div class="alert alert-danger alert-dismissible fade show" role="alert"> $error <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> </div> @endif
If you want to use a session you need to do something like this:
//Controller code session()->put('error', 'There was a failure while sending the message!'); return redirect() ->back() ->withInput(); //View Code @if (session()->has('error')) {{ session('error') }} @endif
if you have any query related this post then please comment below.
Thanks
Jassa
we can also use:
Session::flash(‘success’, ‘Permission levels updated.’);
Good one
realy good one
Thank you