
Chris Cornutt has a new tutorial showing how to implement the Invoke package with Laravel to restrict routes.
For those not familiar with Invoke:
The Invoke system helps you protect your application based on the endpoints and the URI requested. It uses a configuration file (or array of settings) to define the permissions needed to request a resource. For example, it will let you define things like:
“For this endpoint, I want to allow only authenticated users that have the group named ‘test’ to get through”.
Chris goes through the installation, setup, and creates an example middleware.