Home Laravel Return success message to Laravel view

Return success message to Laravel view

by therichpost
Published: Updated: 4 comments
Laravel 7.2 routing with route group auth guard check with prefix

Hello guys if you are new in Laravel 8 then please check below links for more tutorials:

  1. Laravel8 Tutorials
  2. Laravel8 Free Templates

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">&times;</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

You may also like

4 comments

jasmeen May 5, 2018 - 3:17 am

we can also use:
Session::flash(‘success’, ‘Permission levels updated.’);

Reply
Ajay malhotra October 26, 2018 - 6:13 am

Good one

Reply
Ash June 9, 2020 - 5:37 am

realy good one

Reply
Ajay Malhotra June 9, 2020 - 1:58 pm

Thank you

Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.