私は認証を行っており、ログイン後のページは特定のページにリダイレクトされますが、302 のコードが見つかりました。ログインページにとどまります。なぜこれが起こるのですか?
```
if ($validator->passes()){
$auth = DB::table('us')->where('username', '=', Input::get('username'))
->where('password', '=', Input::get('password'))->get()->first();
// Try to log the user in.
if ($auth){
// Redirect to homepage
//Auth::login($auth);
Auth::attempt(['username' => $username, 'password' => $password], $remember);
return Redirect::to('app/dashboard');
}
}
else{
return Redirect::to('login')->withErrors($validator);
}
```
ありがとう