In the controller
return redirect('/Menu_Item')->with('status','Record is successfully Inserted');
In the view blade where we can display that msg
@if(session('status'))
<p align="center" style="font-family:arial;font-size:26px;font-style:arial">{{session('status')}}</p>
@endif
0 Comments