コード例 #1
0
ファイル: Login.php プロジェクト: KNein32/KYYT1115
 /**
  * Log in check.
  * Password should be encrypted and validation should be done in the model.
  * Should use select to get the columns you are interested in.
  * 
  * @param Request
  */
 public function user(Request $request)
 {
     $name = $request->input('name');
     $password = $request->input('password');
     $user = User::validate($name, $password);
     if (!$user) {
         return redirect('/')->withErrors('Failed to validate user name or password');
     }
     $group = Group::getUserGroup($user);
     return redirect($group);
 }