Laravel 5 flash message flashes again after navigating away and using back button

前端 未结 6 1577
无人共我
无人共我 2020-12-19 05:13

In my controller im trying to redirect back with a Flash message in laravel 5. This all works great. The problem is no matter how i set it up the flash message always re-app

6条回答
  •  抹茶落季
    2020-12-19 05:46

    For those of you not concerned with back button:

    @if (Session::has('error_message'))
     {{ Session::get('error_message') }}
     {{ Session::forget('error_message') }}
    @endif
    

    and if that doesnt make it clear out, try:

    @if (Session::has('error_message'))
     {{ Session::get('error_message') }}
     {{ Session::forget('error_message') }}
     {{ Session::save() }}
    @endif
    

提交回复
热议问题