Answers for "laravel flash message alert"

PHP
7

laravel success message

return redirect()->back()->with('message', 'IT WORKS!');

Displaying message if it exists:

@if(session()->has('message'))
    <div class="alert alert-success">
        {{ session()->get('message') }}
    </div>
@endif
Posted by: Guest on March-22-2020
1

laravel success message

//If it didn't help (still, keep routes.php without web middleware), you can try little bit different approach:

return redirect()->back()->with('message', 'IT WORKS!');
// Displaying message if it exists:

@if(session()->has('message'))
    <div class="alert alert-success">
        {{ session()->get('message') }}
    </div>
@endif
Posted by: Guest on August-01-2021
0

how to use flash message in laravel

Session::flash('message', 'This is a message!'); 
Session::flash('alert-class', 'alert-danger');
Posted by: Guest on October-29-2020

Browse Popular Code Answers by Language