0
HTTP:在RouteCollection.php線//localhost/laravel.dev/auth/login> bringsup錯誤NotFoundHttpException 161NotFoundHttpException在RouteCollection.php線161
Route.php
Route::get('auth/login', 'Auth\[email protected]');
Route::post('auth/login', 'Auth\[email protected]');
Route::get('auth/logout', 'Auth\[email protected]'); // Registration routes...
Route::get('auth/register', 'Auth\[email protected]');
Route::post('auth/register', 'Auth\[email protected]');
Route::controllers([ 'password' => 'Auth\PasswordController', ]);
您需要在此處添加更多信息,以便我們爲您提供幫助。檢查[如何問](http://www.stackoverflow.com/help/how-to-ask)。 –
我的route.php loolike – user3358052
Route :: get('auth/login','Auth \ AuthController @ getLogin'); Route :: post('auth/login','Auth \ AuthController @ postLogin'); Route :: get('auth/logout','Auth \ AuthController @ getLogout'); //註冊路線... Route :: get('auth/register','Auth \ AuthController @ getRegister'); Route :: post('auth/register','Auth \ AuthController @ postRegister'); Route :: controllers(['password'=>'Auth \ PasswordController', ]); – user3358052