Laravel使用子数组导出到Excel

时间:2019-03-14 17:04:22

标签: excel laravel-5 merge cell maatwebsite-excel

我想知道是否有可能,怎么办?

我有一个用户集合,我想使用Maatwebsite Excel将该集合导出到excel。我唯一的问题是子数组。

我想获得这样的东西: enter image description here

或至少类似以下内容: enter image description here

问题在于联系信息位于一个数组中,我只能获得此信息: enter image description here

顺便说一下,联系信息是通过返回数组的方法获得的,但是由于下载时的某种原因,它被转换为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;
    }
}

0 个答案:

没有答案