I have a template xls to which I write some data. This template needs to be saved in different folder under different name. Here is code I use:
Excel::load('template.xls', function($excel) use($order) {
// Writing stuff
})->store('xls', public_path('exports'));
How do I change this code to write file under different name? I now it's trivial but I couldn't find it in documentation.