In Laravel, there is a php file in config called auth.php where you can change the table in which you want to do authentication with. This table in the auth.php file will be used as the default anytime you want to authenticate in laravel.
Is there a way of changing this table or model at run-time using the Auth class? Rather than using the table configured in the auth.php file, I will like to use a different table which is different from that in the auth.php file. I appreciate your help in advance.