我正在使用Laravel Excel 3.1将数据导出到Excel。我的客户希望有多个标题行,其中包括报告的某些元数据,例如报告类型和日期。以下是我要寻找的示例:
Column A| Column B | Column C
Type: | Balances |
Date: | 01/01/2019 |
Account | Name | Total
12345 | Johnson | $10,000
54321 | Smith | $25,000
我可以通过在headings
模型上使用Export
数组来创建列标题(在本例中为Account,Name和Total),但这没有达到最终目标。我如何用另外的Type
和Date
行来创建内容?