I am using Laravel 5.8 for authenticating users from database. Presently, I can login and authenticate the users from the application and database. However, I want to have a mixed authentication whereby I can also authenticate some users from Active Director. That is,
Some users can be registered directly from the application, saved into the database and then login.
Some users can be imported from Active Directory and they can also login.
How do I achieve this?
Thank you.