mousumi_mou's avatar

“Class 'Maatwebsite\Excel\Facades\Excel' not found” Problem

I tried to upload a csv file, but while I tried it, there shows that "Class 'Maatwebsite\Excel\Facades\Excel' not found". How can I solve this?

For more details please check this link: https://stackoverflow.com/questions/52895351/class-maatwebsite-excel-facades-excel-not-found-problem

0 likes
3 replies
wilburpowery's avatar

Did you install the Laravel Excel package with composer?

If so, and you aren't using Laravel 5.5 or greater, you'll have to manually add the Service Provider and Facade in config/app.php.

Versions of Laravel prior to 5.5 don't have the Package Auto Discovery feature.

As a last resort, try composer dump-autoload and composer install again.

2 likes
wilburpowery's avatar

composer require maatwebsite/excel should install the package for you.

3 likes

Please or to participate in this conversation.