你好拜託,我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。請幫助
它不工作,我已經嘗試過了太 – Ademaintain