how to pass JSON data to view in laravel how to pass JSON data to view in laravel json json

how to pass JSON data to view in laravel


For Laravel ver 4.2,You can pass your data to your blade view with a variable (eg:$data) having an array which will be used in your blade.

$flag is variable being used in the JS part of your code, so you can pass that also as an array: Response::json(['param1' => $foo1, 'param2' =>$foo2)]);

In your controller return the view:

 return Response::json(['view' => View::make('yourbladename', $data)->render(), 'flag'=>$flag]);

In your JS use the data variables as:

function(data){      $('#DivToAppendHTML').append(data.view);                    //this appends html blade to the Div having the ID DivToAppendHTML       if(data.flag == 1){                                  //this uses the second variable passed in controller for any other purpose                       $('.classname').remove();        }}


If you want to create JSON response, you need to convert collection to an array:

$items = Items::all()->toArray(); // $items is array nowreturn response()->json($items);

If you want to pass some JSON data to a view, do this:

$items = Items::all()->toJson();return view('items.create', compact('items'));