WHAT WE’LL BE BUILDING
In this tutorial, you’ll learn how to use Laravel Lumen (version 8) to create REST APIs.
We’ll be creating a Lumen microservice that implements all the types of HTTP requests. Our microservice will help us manage users. So, from any frontend application we connect to our microservice, we should be able to:
- Create a new user (POST Request)
- Edit the details of a user (PUT Request)
- Request for the details of users (GET Request)
- Delete a user (DELETE Request)
Here’s a link to the GitHub repo of this project: Repo
Tools Required:
…
Software Developer | Technical Writer