Tag: Backend Development

Beyond Coding in the AI Era

For more than two years, I have been using AI, and it has been absolutely amazing for developing features, MVPs, and POCs. I really enjoy it. It gives me the balance and the ability to do much more, both in life and at work, alhamdulillah…

PHP FPM

I was actually questioning what happens when I execute a PHP script or when an http request reaches Apache or Nginx.

Logging Matters More Now

Logging is one of the best practices in software development. A good codebase is a codebase that contains logging for important events and actions over time in an automated way.

How to Add UUIDs to an Existing Laravel Database

Introduction UUIDs (Universally Unique Identifiers) are 128-bit identifiers that are globally unique, making them ideal for scenarios where you want to hide sequential ID patterns from your users. This article…

Handling Date Fields. A Common Pitfall

In my Laravel hobby project, I had a field called date_covered defined as a date type, with now() as the default value. However, when I needed to manipulate this field,…

Understanding Method Spoofing in Laravel

Title: Understanding Method Spoofing in Laravel When working with request/response methods, different HTTP methods like GET, POST, PUT, and PATCH have custom purposes. POST is generally used for creating resources,…