我正在尝试学习如何将基本的 excel 工作表导入 laravel 5.1
vname Vservice vphone vmobile
test name test service test number 123232 test mobile 12344
我做了以下功能
public function ImportVlist()
{
Excel::load('/import.xlsx', function($reader)
{
$results = $reader->get();
foreach ($results as $key => $value) {
foreach ($value as $key => $value1) {
Vlist::create([
'vname'=>$value1->vname,
'vservice' => $value1->vservice,
'vphone' => $value1->vphone,
'vmobile' => $value1->vmobile
]);
}
}
})->get();
}
我已经制定了路线
Route::get('/vlist/import' , 'VlistsController@ImportVlist');
在索引中我做了以下链接
<li><a href="{{ action('VlistsController@ImportVlist') }}"> <span>Import Suppliers </span></a></li>
但是当我单击时,我收到在 excel 旁边找不到的页面没有导入到 mysql db