This is my first post here. I'm starting to use Laravel 5.3 to create a system. In this system I will have two types of users (Admin and Client). I'd like to block certain routes for the client. I've been able to limit clients from viewing certain items from views (using roles), but I'd like to block the routes for more security. How could I tell the system to only accept admin users access the delete route, for example?
Sorry if it's a stupid question, but I'm learning and I'm kind of aimless.