Level 88
Well uploading has nothing to do with the package, so you can simply Google that.. For reading it's fairly simply.
public function import(Request $request)
{
$file = $request->file('file');
$file->move(storage_path('imports'), 'import.' . $file-> getClientOriginalExtension());
Excel::load(storage_path($file . '/' . $file->getFilename()), function ($reader) {
$reader->each(function ($row) {
echo $row->column_name;
});
});
}
2 likes