我想知道是否有可能,怎么办?
我有一个用户集合,我想使用Maatwebsite Excel将该集合导出到excel。我唯一的问题是子数组。
顺便说一下,联系信息是通过返回数组的方法获得的,但是由于下载时的某种原因,它被转换为JSon,每个条目的结构为:
<?php
class Entry extends Model{
public $name = "";
public $lastname = "";
public $company = "";
public $contact = [];
public function __construct( string $name, string $lastname, string $company = null, $contact = [] ){
$this->name = $name;
$this->lastname = $lastname;
$this->company = $company;
$this->contact = $contact;
}
}