How can I do authentication with multiple database table in Laravel?
For example, I have 3 tables: 1. General User Login table 2. Membership detail table 3. CMS user detail table
When user login from the CMS or the member login, the Auth will go and verify from the "general user login" table. But how can I make the Auth function also getting info from the second or third table depend on the user type? Then, I can access those info via something like Auth::user()->address, which the address is stored in the membership detail table.
Thank you.