Niall
Niall

Reputation: 804

Laravel fatal error: Fatal error: Interface 'Illuminate\Auth\Illuminate\Contracts\Auth\Factory' not found

I'm trying to start using laravel php framework. I'm trying to just call the index file and I get this error message.

C:\xampp\php\php.exe C:\xampp\htdocs\tutorials\lara\application\public\index.php

Fatal error: Interface 'Illuminate\Auth\Illuminate\Contracts\Auth\Factory' not found in C:\xampp\htdocs\tutorials\lara\application\bootstrap\cache\compiled.php on line 357

Process finished with exit code 255

Can anyone shine some light on what this means?

Upvotes: 3

Views: 6691

Answers (1)

Imtiaz Pabel
Imtiaz Pabel

Reputation: 5443

Your Illuminate\Auth\Illuminate\Contracts\Auth\Factory may not copied in your project,that why this is happening.So you need to be

Step 1 : Remove full vendor folder 
Step 2 : Run from your terminal composer install

Upvotes: 5

Related Questions