Laravel REST API Part 10: Adding Swagger Documentation In this article, we will explore how to integrate Swagger (L5-Swagger package) into a Laravel application for clean, auto-generated API documentation Continue Reading
Laravel REST API Part 9: Create Order API We are going to take our Laravel REST API series a step further and create an example of creating Order API. Continue Reading
Laravel REST API Part 8: Caching Products List with Redis In a production environment, caching can make a significant difference, providing a much faster and more responsive user experience. Continue Reading
Laravel REST API Part 7: Refactor to Actions Organizing your code is essential for readability, maintainability, and scalability. An effective way to achieve this is by refactoring controller log... Continue Reading
Laravel REST API Part 6: Unit Testing Products List API In this article we are going to create feature tests for our products list api step by step Continue Reading
Laravel REST API Part 5: Add Products List API We will build our product listing API with advanced filtering. This tutorial covers creating routes, controllers, resources, and implementing query fi... Continue Reading
Laravel REST API Part 4: Unit Test Login and Logout APIs Laravel built with test in mind, it provides a convenient way to integrate with Pest (which is a testing framework built by one of Laravel core team)... Continue Reading
Laravel REST API Part 3: Authentication Using Sanctum To authenticate an API you need to send a token with each request in order to be able to identify the sending user, To do that, Laravel makes it also... Continue Reading
Laravel REST API Part 2: Create Migrations, Models, and Factories We’ll walk through creating models, migrations, for our Laravel API. and we will populate some data as well with factories and seeders to be able to t... Continue Reading
Laravel REST API Part 1: Install with Docker and Sail We will have a series of articles trying to build a Laravel based RESTful API. I’ll guide you through creating a fully functional API from scratch, co... Continue Reading