RouteCollection.php第161行中的NotFoundHttpException。

时间:2016-07-19 09:31:05

标签: laravel-5.1

我尝试使用“http://localhost/myproject/public/auth/login”创建登录表单但我一直收到该错误。     以下是我的routes.php

Route::get('/', function () {
return view('welcome');
});

// Authentication routes...
Route::get('auth/login', 'Auth\AuthController@getLogin');
Route::post('auth/login', 'Auth\AuthController@postLogin');
Route::get('auth/logout', 'Auth\AuthController@getLogout');

// Registration routes...
Route::get('auth/register', 'Auth\AuthController@getRegister');
Route::post('auth/register', 'Auth\AuthController@postRegister');

我还创建了resources\views\auth\login.blade.php文件。任何人都可以请求帮助,因为我正在关注Laravel 5.1,但不知道什么是错的。

0 个答案:

没有答案