I am following this documentation
to implement export to Excel in my laravel 4 project.
So am trying to generate excel file from array like this:
If you have a Collection of stdClass objects, you could try with this:
$data = $data->map(function ($item){ return get_object_vars($item); });