我有一个模板xls,我写了一些数据。此模板需要以不同的名称保存在不同的文件夹中。这是我使用的代码:
Excel::load('template.xls', function($excel) use($order) {
// Writing stuff
})->store('xls', public_path('exports'));
如何更改此代码以使用其他名称写入文件?我现在很琐碎,但我在文档中找不到它。
答案 0 :(得分:1)
Haven没有测试过,但试试这个:
Excel::load('template.xls', function($excel) use($order) {
// Writing stuff
})->setFileName('new-filename')->store('xls', public_path('exports'));
注意您不需要指定文件扩展名