Wednesday, March 8, 2017

Laravel trait redirect back with session

//inside of trait method
redirect()->back()->with('success', $response['message'])->send();

I have a method inside of trait required redirect back to previous page with flash session, but about code only redirect back without session. (controller call this trait method)

I also tried Session::flash(); but its not working too

this method will use many times in my app, therefor I need this inside of my trait



via Benjamin W

Advertisement