Laravel view not found exception

前端 未结 16 1929
遇见更好的自我
遇见更好的自我 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:53

    This command works for me

    php artisan config:cache
    

    As Laravel doc says that by default, Laravel is configured to use the file cache driver, which stores the serialized, cached objects in the filesystem. So it needs to recache the file system so that newly added views and route are available to show. I also not sure why laravel needs to recache actually

提交回复
热议问题