There are lots of packages available to authenticate the APIs request in Laravel. Such as Passport, JWT, and Sanctum. We are already familiar with Laravel Passport and JWT (JSON Web Token) to authenticate the APIs. Sanctum is introduced in Laravel 7 and really this is also a secured package. The Sanctum provides the authentication for […]
Create RESTful APIs in Laravel 8 Using Passport Auth
Displaying out JSON data only is not such an API. An API contains the data that synchronizes between the two applications. It connects two applications through an end-point. Basically, it works as an intermediary between the two applications. Every API request will have a response. So, in the overall process the API talks to another […]
Laravel 7 RESTful APIs For Todo App with Passport Auth
The Todo app contains a task list that will gonna perform on a daily basis or specified time frame. For creating any task, we will require login into the application. So, the application will contain the user registration and login. For the authentication, I will be using the passport auth in the Laravel 7. I […]
Create a CRUD App in React.js Using Laravel 7 RESTful API
In React.js you can create an interactive UI by combining the different components together. In this post, we are going to create a Reactjs CRUD application. For managing the data and database operations, we will be using the RESTful APIs. You are already familiar with the term RESTful APIs. For the back-end, we will be […]
Laravel 7 RESTful APIs with Passport Authentication
Data security in APIs is a crucial challenge in any programming language. If you are creating any APIs for your web application then there might be a risk to access and misuse the APIs. Therefore the authentic request is required for every single call of the API. It will validate all the HTTP requests which […]
RESTful APIs in Laravel 6 with Passport Authentication
REST or RESTful is a web service that is used to send requests to the server for accessing the web resources. It stands for REpresentational State Transfer which returns the response with the stateless operation. A RESTful API uses HTTP Requests to perform the GET, POST, PUT, and DELETE operations on the data. These requests […]