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) {
In Controller:
use Session,Redirect; public function store(Request $request) { Session::flash('donald', 'duck'); Session::put('mickey', 'mouse'); return Redirect::to('/customers')->with('bugs', 'bunny'); }
In 'view' check the data is getting or not:
Good Luck :)