multiauth_tutorial
multiauth_tutorial copied to clipboard
Fix logout routes and remember me
trafficstars
Hi,
Thank you for your Multi Auth tutorials, they are very helpful. I have noticed a bug though - if you tick Remember Me when logging in, logging out does not work. This is because the logout functions we created in Part 4 are never being accessed. Currently, clicking logout takes you to Laravel's default /logout page instead of /users/logout and /admin/logout.
To fix this, I have:
- Created a
helpers.phpfile which contains two functions that can run in our blade file. One hides the logout dialogue from the admin login page, and the other returns the correct logout route. - Changed the logout routes to POST, as that is what Laravel is expecting.
Thanks :+1: