从数据库导出到laravel 4.2中的excel

时间:2017-06-15 13:40:25

标签: php laravel

刀片文件:

<div class="container">
   <a href="{{ url::to('exportTo/xls') }}"><button class="btn btn-primary"><span class="glyphicon glyphicon-export"></span> Export to xls</button></a>
</div>

控制器:

public function exportTo($type)
{

    $data = locations::get(['location_name','location_email'])->toArray();
           // dd($data);

    return Excel::create('export_to_excel_example', function($excel) use ($data) {
        $excel->sheet('mySheet', function($sheet) use ($data)
        {
            $sheet->fromArray($data);
        });
    })->download($type);
}

路线档案:

Route::get('exportTo/{type}', 'CustomerController@exportTo');

在laravel 4.2中导出到excel时,它被重定向到索引页面,当我点击刀片文件中的导出到xls链接时。

0 个答案:

没有答案