Laravel 4 how to display flash message in view?

后端 未结 11 1004
粉色の甜心
粉色の甜心 2021-02-04 00:33

I\'m trying to get my flash message to display.

This is in my routing file

Route::post(\'users/groups/save\', function(){

return Redirect::to(\'users/g         


        
11条回答
  •  说谎
    说谎 (楼主)
    2021-02-04 01:30

    if you are using bootstrap-3 try the script below for Alert Style

        @if(Session::has('success'))
            

    {{ Session::get('success') }}

    @endif

提交回复
热议问题