Laravel view not found exception

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

    In my case, Laravel 5.3

    Route::get('/', function(){
        return View('test');
    });
    

    test.blade.php was not rendering but some other views were rendering on localhost via XAMPP on mac. Upon running artisan server, the view started rendering for same url over XAMPP.

    php artisan serve
    

    To avoid any such scenario, one should test the Laravel apps with artisan server only.

提交回复
热议问题