I want to use maatwebsitw/excel in my laravel project, but even though I write php artisan vendor:publish --provider="Maatwebsite\Excel\ServiceProvider" in the terminal I get this message.
"INFO No publishable resources for tag []. "
I added the provider code to config/app.php
'providers' => [
Maatwebsite\Excel\ExcelServiceProvider::class,
],
'aliases' => [
'Excel' => Maatwebsite\Excel\Facades\Excel::class,
],
I want to import excel file to my project.