PHP 8.0 to 8.4 New Features Recap In this article, I'm trying to explore all new features added from PHP version 8.0 to 8.4 highlighting important ones and give simple examples on it. Continue Reading
Setting Up Continuous Deployment (CD) in Laravel with GitHub Actions Learn how to setup continuous deployment (CD) to automate the process of deploying code changes to your server Continue Reading
Deploying Laravel Application to Digital Ocean Droplet Deploying laravel application in few steps to digital ocean droplet, using marketplace images. Continue Reading
Overview of The New Array Functions in PHP 8.4 PHP 8.4 introduced four new array functions array_find(), array_find_key(), array_any(), and array_all(). These additions simplify common tasks, reduc... Continue Reading
Setting Up Continuous Integration (CI) in Laravel with GitHub Actions Wether you work solo or in a team, having some automated checks while you do your PR's or Pushing to the repository, is something will give you confid... Continue Reading
Connecting a GoDaddy Domain to a DigitalOcean Droplet Connecting the domain to the server is essential step in deployment. In this article we are going to setup a domain from godaddy into a digitalocean d... Continue Reading
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