Laravel view not found exception

前端 未结 16 1930
遇见更好的自我
遇见更好的自我 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 happens when Laravel doesn't find a view file in your application. Make sure you have a file named: index.php or index.blade.php under your app/views directory.

    Note that Laravel will do the following when calling View::make:

    • For View::make('index') Laravel will look for the file: app/views/index.php.
    • For View::make('index.foo') Laravel will look for the file: app/views/index/foo.php.

    The file can have any of those two extensions: .php or .blade.php.

提交回复
热议问题