Laravel 5.2 redirect back with success message

前端 未结 9 2155
忘掉有多难
忘掉有多难 2020-12-13 01:50

I\'m trying to get a success message back to my home page on laravel.

return redirect()->back()->withSuccess(\'IT WORKS!\');

For some

9条回答
  •  北海茫月
    2020-12-13 02:12

    In Controller

    return redirect()->route('company')->with('update', 'Content has been updated successfully!');
    

    In view

    @if (session('update'))
      
    × {{ session('update') }}
    @endif

提交回复
热议问题