Building My First Side Project : Daily Expense Tracker – A Journey

I launched my first side project : dailyexpensetracker.in

The Beginning: A Personal Problem Every month-end felt like a mystery. Where did my money go? Sure, I was using spreadsheets and notes apps, but they were cumbersome and easy to forget. My friend had the same problem – we’d often discuss how we needed something simpler, something that would take seconds to record an … Read more

Single Responsibility Principle In PHP (SRP)

Since I started programming never cared about SOLID PRINCIPLES that much. Because I wasn’t aware of all these things. I started by watching YouTube videos and maybe because of that it wasn’t mentioned by anyone. But now, when I’m exploring a few open-source projects and learning day by day to improve myself. I’m thinking about … Read more

Password Protected Zip File Creation in PHP

Hello readers, today we will learn about a little bit different topics. We will see how we can create a password-protected zip in PHP. Since a few days back, I’ve been trying to write less theory, just to save time from both sides. Create A PHP File Yes, you read it right, we just need … Read more

The Importance of Unit Testing in PHP Applications

importance of testing in php

In the world of web development, PHP remains a popular and powerful scripting language. PHP applications power numerous websites, from e-commerce platforms to content management systems. While PHP’s flexibility and versatility are undeniable, ensuring the reliability and stability of PHP applications is equally important. This is where unit testing comes into play. In this blog … Read more

Blade Component In Laravel

blade components in laravel

Hi readers, If you are also a Laravelers that means you do write code in Laravel then you may know about the Blade Templating Engine. So, Blade is the default templating engine in Laravel. In Blade, we get the “components” feature from Laravel. It offers a simple yet powerful way of creating dynamic and reusable … Read more