Maybe take a look at this package: https://github.com/Maatwebsite/Laravel-Excel
Feb 6, 2015
7
Level 3
Upload, import, delete xls
Greetings pros,
Is there a way on how can i upload an xls file that is coming from other directory?
like for example.
Filename: test.xls
Directory: C:\Users\ABC\Downloads or C:\Users\Jake\desktop
I'm using this
http://www.maatwebsite.nl/laravel-excel/docs/import
for importing the data.
Any help would be greatly appreciated.
Level 13
Perhaps I don't understand the question. To import a file from any location just pass the load method the path to the file. ex:
$readerObject = Excel::load('path/to/file.xlsx');
// or
use Maatwebsite\Excel\Excel;
public function __construct(Excel $excel)
{
$this->excel = $excel;
}
$readerObject = $this->excel->load('path/to/file.xlsx');
Please or to participate in this conversation.