I am trying to implement flash messaging using sessions but am unable to do so.
In my controller I have:
public function store(Request $request) {
Build your Session flash info by using this code:
session()->flash("Donald", "Duck") ?>
Check it in your view with:
@if(Session::has("Donald") {{Session::get("Donald")}} @endif
You forget to use $request :)