Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@
Homestead.json
Homestead.yaml
.env
temp_auto_push.bat
temp_interactive_push.bat
.gitignore
branch_structure.json
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/AdminLoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public function login(Request $request)
public function logout()
{
Auth::guard('admin')->logout();
return redirect('/');
return redirect('/admin');
}
}