0
我想明白我怎麼會用laravel/EXCEL導入我的Excel文件在laravel進口基本練成
我試圖做這樣的:
public function import()
{
$path = public_path();
Excel::load($path.'/file.xlsx', function($reader) {
$firstrow = $reader->first()->toArray();
dd($firstrow);
});
}
但是當我甩什麼不明白從laravel任何轉儲,
這是從我的Excel數據:
item spool junta
1 test1 j1
2 test2 j2
3 test3 j3
是一個簡單的文件J所烏斯特來測試,但沒有發生,我只是沒有我的轉儲空白頁
在此先感謝幫助!