I cannot upload an excel (csv format) file in laravel. ["INFO No publishable resources for tag []. "]

38 Views Asked by At

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.

0

There are 0 best solutions below