(add basic logout test and endpoint)

This commit is contained in:
Adam Wathan
2017-05-18 11:48:22 -04:00
parent a852353292
commit 6b9b61fba2
4 changed files with 21 additions and 3 deletions

View File

@@ -23,4 +23,10 @@ class LoginController extends Controller
return redirect('/backstage/concerts/new');
}
public function logout()
{
Auth::logout();
return redirect('/login');
}
}