I\'m trying to get a success message back to my home page on laravel.
return redirect()->back()->withSuccess(\'IT WORKS!\');
For some
In Controller
return redirect()->route('company')->with('update', 'Content has been updated successfully!');
In view
@if (session('update')) × {{ session('update') }} @endif