【发布时间】:2016-08-20 10:45:39
【问题描述】:
我的代码是从网站上复制的。
Excel::create('Filename', function($excel) {
// Set the title
$excel->setTitle('Our new awesome title');
// Chain the setters
$excel->setCreator('Maatwebsite')
->setCompany('Maatwebsite');
// Call them separately
$excel->setDescription('A demonstration to change the file properties');
})->download('xls');
我成功下载了一次。
但是另一个尝试是错误的。
错误信息是这样的。
Whoops, looks like something went wrong.
FatalErrorException in LaravelExcelWriter.php line 263:
Call to a member function getMergeCells() on a non-object
in LaravelExcelWriter.php line 263
【问题讨论】:
标签: laravel download export phpexcel laravel-excel