flash
flash copied to clipboard
Added withFlash macro to RedirectResponse
Instead of writing
flash('Some message', 'danger')->important();
return redirect()->route('index');
we can now write
return redirect()->route('index')->withFlash('Some message', 'danger', true);