1、copmposer下载excel
2、在控制器引入:use Excel;
3、将要导出的数据处理成数组,第一组数据为表的字段名,如图
4、导出成表格
Excel::create('Laravel Excel', function($excel) { $excel->sheet('Excel sheet', function($sheet) { $sheet->setOrientation('landscape'); });})->export('xls');
本文共 296 字,大约阅读时间需要 1 分钟。
1、copmposer下载excel
2、在控制器引入:use Excel;
3、将要导出的数据处理成数组,第一组数据为表的字段名,如图
4、导出成表格
Excel::create('Laravel Excel', function($excel) { $excel->sheet('Excel sheet', function($sheet) { $sheet->setOrientation('landscape'); });})->export('xls');
转载于:https://www.cnblogs.com/lamp01/p/6853221.html