2017-04-19 54 views
2

你好拜託,我larvel的新用戶,我有嘗試創建一個鏈接註冊這樣的錯誤,它會引發上述對不起,找不到您正在尋找的頁面。 1/1 NotFoundHttpException在RouteCollection.php行179:

錯誤我控制器

Route::group(['prefix'=>'auth'], function(){ 

    Route::get('register', [ 
     'as' => 'get_register', 
     'uses' => 'Auth/[email protected]' 
     ]); 

    Route::post('register', [ 
     'as' => 'post_register', 
     'uses' => 'Auth/[email protected]' 
     ]); 
}); 

和我聯繫是

<a href="{{ url('register') }}">Register</a> 

我創建鑑於權威性文件夾內的一個register.blade.php。請幫助

回答

2

您可以通過auth前綴的網址。在你的鏈接,嘗試使用這個語法:

<a href="{{ url('auth/register') }}">Register</a> 
+0

它不工作,我已經嘗試過了太 – Ademaintain

2

你可以嘗試像

<a href="{{ route('name-of-route') }}">Register</a> 

你的情況

<a href="{{ route('get_register') }}">Register</a> 
+0

是的,我已經trried的是,它不工作,仍然得到對不起,您要找的頁面無法找到。 1/1 NotFoundHttpException在RouteCollection.php行179: – Ademaintain

+0

你有「驗證」在控制器目錄? –

+0

是不存在與ForgotPasswordController.php,LoginController.php,RegisterController.php和ResetPasswordController.php – Ademaintain

1

我覺得你的代碼需要更新,如:

控制器/路由

Route::group(['prefix'=>'auth'], function(){ 

    Route::get('register', '[email protected]')->name('get_register'); 

    Route::post('register', '[email protected]')->name('post_register'); 

}); 

和你的鏈接是:

<a href="{{ route('get_register') }}">Register</a>

希望這對你的工作!

+0

謝謝兄弟,但它不能正常工作,請使用注意IM laravel 5.4和我的路線是在路徑文件夾/ web.php – Ademaintain

相關問題