Uncaught ReflectionException: Class log does not exist Laravel 5.2

前端 未结 25 2139
长情又很酷
长情又很酷 2020-11-27 17:15

I am currently trying to clone an existing project of mine from github. After clone I run composer install during the process I receive the following error:

25条回答
  •  借酒劲吻你
    2020-11-27 17:20

    Solved this issue after removing space in the .env file (view .env in sublime because vi editor doesn't show space at end of the .env file.) and run below commands.

    Commands:

    php artisan config:clear
    php artisan cache:clear
    composer dump-autoload
    php artisan clear-compiled
    

提交回复
热议问题