I was looking for simple Laravel 5.6+ version roles and users solution.
I want to have one users
table. So I added user_type
in my table as string
in
$table->enum('role', ['admin', 'user']);
Which files should I create or update to protect everything under /admin
route. And do not let to use admins
routes for users
?