This package might get you started https://packagist.org/packages/bitfumes/laravel-multiauth
Two authentications within one page
I am new to Laravel and I would like to know whether it is possible to have two separate tables for authentication. One table (users) for regular users in frontend and one table (admins) for admins accessible on /admin123 or something.
The idea is that these accounts are separate and admin can't interfere with users - the form submit will check only in users and not admins tables.
I know this is done via roles (user, author, admin, superadmin...) but the requirement is to have them completely separate.
If that's possible, is here on Laracasts, or somewhere else, a tutorial how to achieve that?
Thank you in advance.
Please or to participate in this conversation.