laravel excel扩展包,安装的最后 $excel = App::make('excel'); 怎么用?

The class is bound to the ioC as excel

$excel = App::make('excel');

要在哪里加这句话?
已邀请:

细佬虫虫

赞同来自:

我也不知道

豁达于心

赞同来自:

不用那样,app里面设置好后providers,aliases设置好后,在需要用到的控制器里use Excel;之后就可以直接用了,如:导出
Excel::create($filename, function($excel) use($data) {
        $excel->sheet('Sheetname', function($sheet) use($data) {
            $sheet->fromArray($data);
        });

    })->download('xls');

这样就把你的数据导出来了~

要回复问题请先登录注册