コード例 #1
0
ファイル: LoginController.php プロジェクト: hg2355/ACELink
 public function postLogin()
 {
     $credentials = Input::all();
     if (Authenticator::login($credentials, $this)) {
         return $this->successResponse();
     } else {
         return $this->failResponse();
     }
 }