laravel redirect back with success message code example
Example 1: add sucssess message laravel
return redirect()->back()->with('message', 'IT WORKS!');
Displaying message if it exists:
@if(session()->has('message'))
<div class="alert alert-success">
{{ session()->get('message') }}
</div>
@endif
Example 2: laravel redirect back
return Redirect::back()->withErrors(['msg', 'The Message']);
and inside your view call this
@if($errors->any())
<h4>{{$errors->first()}}</h4>
@endif
Example 3: return redirect with message laravel
Route::post('user/profile', function () {
return redirect('dashboard')->with('status', 'Profile updated!');
});