Object of class stdClass could not be converted to string - laravel

后端 未结 6 1163
野性不改
野性不改 2021-02-18 17:04

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:



        
6条回答
  •  星月不相逢
    2021-02-18 17:20

    This is easy all you need to do is something like this Grab your contents like this

      $result->get(filed1) = 'some modification';
      $result->get(filed2) = 'some modification2';
    

提交回复
热议问题