Laravel 5.1 Route Object not found

后端 未结 3 431
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-15 14:14

Please help me, I\'m working on a Laravel using the latest version of xampp & do not know what the cause of my problem is.

This route is working fine:

         


        
3条回答
  •  攒了一身酷
    2021-01-15 14:48

    Have you tried adding a slash before the name? like this:

    Route::get('/about', function () {
        return 'aaa';
    });
    

提交回复
热议问题