1 我在將電子郵件更改爲用戶名時遇到了一些問題。更改爲用戶名而不是電子郵件Laravel The protected $username = 'username';似乎不適合我。 我在哪裏可以更改DB註冊查詢和數據庫登錄查詢? 來源 2016-05-11 swagster +0 檢查這裏attempt($credentials) 憑據您可以發佈您登錄視圖? – xdevnull +0 這是前一段時間修復的。 – swagster +0 很高興聽到這個消息。在AuthController中添加受保護的用戶名應該爲您完成這項工作。你是對的。 :) – xdevnull
0 如果要通過用戶名而不是電子郵件登錄使用該 $credentials = $request->only('username', 'password'); 代替 $credentials = $request->only('email', 'password'); 在AuthenticateController.php 來源 2016-05-11 09:19:55 C2486 +0 註冊怎麼辦?我得到一個數據庫錯誤,因爲它試圖找到名稱,而不是用戶名。 – swagster +0 您需要用戶名,或者將其更名爲 – C2486 +0 AuthenticateController.php – swagster
檢查這裏
attempt($credentials)
憑據您可以發佈您登錄視圖? – xdevnull
這是前一段時間修復的。 – swagster
很高興聽到這個消息。在AuthController中添加受保護的用戶名應該爲您完成這項工作。你是對的。 :) – xdevnull