send data to view from controller Tricks

Browse latest tricks and tips on send data to view from controller.

Sending data to view using redirect in Laravel?

You can send data to view using redirects in Laravel by using below code$data=['id'=>1,'name'=>'test']; return Redirect::route('Controller.method')->with('data' => $d ...
published on : 12 hours ago 12 Comments