Questions tagged «laravel-5.3»

9
laravel 5.3新增Auth :: routes()
最近,我开始使用laravel 5.3编写博客,但是运行后我有一个问题 php artisan make:auth 当我运行它时,它将在 web.php 这是其中的代码: Auth::routes(); Route::get('/home', 'HomeController@index'); 然后我运行php artisan route:list,发现很多动作,例如LoginController @ login ... 但是我没有在我的动作中找到这些动作,这些动作在App\Http\Controllers\Auth哪里? 还有什么Auth::routes()代表,我找不到有关Auth的路线。 我需要别人的帮助,谢谢您回答我的问题

3
如何在Laravel 5.3中使用API​​路由
在Laravel 5.3中,API路由已移到api.php文件中。但是,如何在api.php文件中调用路由?我试图创建这样的路线: Route::get('/test',function(){ return "ok"; }); 我尝试了以下URL,但均返回NotFoundHttpException异常: http://localhost:8080/test/public/test http://localhost:8080/test/public/api/test 如何调用此API路由?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.