1👍
✅
Try submitting to '/impteachers'
only like this
<el-form :action="'/impteachers'" method="post" enctype="multipart/form-data">
<el-input type="file" name="file"/>
<el-input type="submit" value="upload"/>
</el-form>
And set your route to this
Route::post('/impteachers', 'ImportTeacherController@import');
Source:stackexchange.com