I get asked a lot about how you work with Laravel. So in this tutorial, I will walk through my typical approach to building a Laravel application.
The API we are building is a basic to-do style application, where we can add tasks and move them between to do and done.
In my last article about Route Registrars, I talked about how to add them to the default Laravel Structure.
However, with the way I write Laravel applications, I will need to create an Interface/Contract to use and bind into the container so that I can resolve the action from Laravel DI Container.