I\'m making my first app in Laravel and am trying to get my head around the session flash messages. As far as I\'m aware in my controller action I can set a flash message ei
In Controller:
Redirect::to('/path')->with('message', 'your message');
Or
Session::flash('message', 'your message');
in Blade show message in Blade As ur Desired Pattern:
@if(Session::has('message')) {{session('message')}} @endif