Laravel Excel ( http://www.maatwebsite.nl/laravel-excel/docs ) パッケージを Laravel 5にインストールするのに苦労しています。
"maatwebsite/excel": "2.*"
私のrequireに追加され、composer update
問題なく終了し、すべてのパッケージファイルがあります'Maatwebsite\Excel\ExcelServiceProvider',
プロバイダー配列に追加'Excel' => 'Maatwebsite\Excel\Facades\Excel',
エイリアス配列に追加
ここに問題があります-実行しようとするとphp artisan vendor:publish
、それが教えてくれますNothing to publish for tag [].
を使用php artisan tinker
して実行すると$excel = App::make('excel')
、それが教えてくれReflectionException with message 'Class excel does not exist'
ます。
私は何を間違っていますか?