prajakta
prajakta

Reputation: 127

Sucess message is not getting displayed in laravel

I want to show a success message once the email is sent after redirected to same page. Here is my code :

return redirect('currentshowreport?showid='.$show_id)->with('success','Email sent successfully');

I am getting redirected to the specified page but the success message is not getting displayed. How to achieve this?

Upvotes: 0

Views: 51

Answers (1)

Ismail RBOUH
Ismail RBOUH

Reputation: 10450

Try this:

@if (session('success'))
    <div class="alert alert-success">
        {{ session('success') }}
    </div>
@endif

Upvotes: 1

Related Questions