Laravel view not found exception

前端 未结 16 1822
遇见更好的自我
遇见更好的自我 2020-11-29 03:44

I have problem with laravel view is not found by route function I did composer dumpautoload but no use ArticleController.php



        
16条回答
  •  [愿得一人]
    2020-11-29 03:46

    This error also occurs when you try to move the whole project directory to other path. And you happened to run the following commands below BEFORE you move.

    php artisan optimize --force
    php artisan config:cache
    php artisan route:cache
    

    Mine error message shows like this

    As you can see the old path was written in the compiled.php. So, to fix the problem. Simply run the same command AGAIN under the project folder in your new folder location.

    php artisan optimize --force
    php artisan config:cache
    php artisan route:cache
    

    Hope this helps.

提交回复
热议问题