How can you authenticate multiple types of users in Laravel 5.1 e.g. Jobseeker, Recruiter, Admin etc.
Some of you have suggested using a single users table to store
Short Answer: Add user types to your users table with specific number.
TL;DR answer.
Long Answer:
php artisan migrate:rollback.
$table->integer("user_type")->default(0);
Here I am considering that user type zero is just a simple JobSeeker.