I did in the controller
Session::flash('message', 'Successfully updated!');
and in sight
@if (Session::has('message'))
<li>{!! Session::get('message') !!}</li>
@endif
However, nothing is passed in the view when I do var_dump (Session :: get ('message')); I can view the message, help me
source
share