Remove the Passport Package in Laravel

Laravel Passport API authentication is one of the best API authentication packages but sometimes we are required to use other authentication systems like Sanctum or JWT after using Laravel. Then it required removing Laravel’s passport completely. We can directly change the package but it will hold file memory and database table with it. Eventually, it

Learn More

Implementing JWT authentication in Laravel

In today’s digital landscape, securing user authentication has become a top priority for web developers. One popular method to achieve this is JSON Web Token (JWT) authentication. In this tutorial, we will walk you through the implementation of JWT authentication in Laravel, a powerful PHP framework. By the end, you’ll have a solid understanding of

Learn More