参考: https: //github.com/PHPOffice/PhpSpreadsheet/issues/1608
重现的步骤是什么?
该问题基于Maatwebsite/Laravel-Excel内部使用PhpSpreadsheet https://github.com/Maatwebsite/Laravel-Excel/issues/2784
<table style="width:100%" border="1">
<thead>
<tr>
// ...
<th style="text-align: center;" colspan="4">{{ __('Items') }}</th>
// ...
</tr>
<tr>
// ...
</tr>
</thead>
@foreach ($models->cursor() as $model)
<tbody>
<tr>
// ...
<td colspan="4">
<table style="width:100%">
@foreach ($model->relation as $item)
<tr>
// ...
</tr>
@endforeach
</table>
}
},
];
}
感谢您的帮助,如果您需要更多信息,请询问。
倚天杖
UYOU