1
在我的用戶模型文件中,我想定義驗證規則。語法錯誤,連接數組中的字符串
public function getUserID(){
return Auth::id();
}
private $rules = array(
'name' => 'required|alpha|max:255',
'email' => 'required|email|max:255|unique:users,email,' . $this->getUserID(),
);
我得到
FatalErrorException in User.php line 162: syntax error, unexpected '.', expecting ')'
我已經包括:使用驗證;