Tech Weekly

A weekly dump of things I learned, bugs I squashed, and tech I’m exploring.

Reading time: 3 mins

For years, working with Eloquent models in Laravel meant relying heavily on configuration arrays like $fillable and $casts. They worked, and they became part of how most developers approached model design. But if we’re honest, they always felt a bit disconnected from the language itself. They weren’t really code. They.

Read full log
Reading time: 10 mins

TL;DR: Kumix Cloud is a multi-tenant SaaS dashboard built with Laravel and React that lets DevOps engineers, system administrators, and hosting providers manage VPS instances, SSH credentials, and server health from a single, real-time interface. Here’s how I built it. The Problem Managing multiple VPS servers across different providers is a fragmented nightmare. You bounce between: I needed.

Read full log
Reading time: 3 mins

Recently, I ran into a problem that looked simple at first, but quickly turned into a performance bottleneck. I needed to fetch a directory of cities and branches from a third-party delivery service for an ecommerce checkout page. Since the store supports multiple languages, the same dataset had to be.

Read full log
Reading time: 3 mins

Over the years, I’ve deployed a lot of projects. Small client websites, Laravel apps, WordPress installs, internal tools… and almost every time, the process looked similar. Spin up a VPS, install a stack, configure domains, set up backups, tweak security, and repeat. It worked, but it was never smooth. Every.

Read full log
Reading time: 3 mins

Many beginners look at Laravel and assume it’s just PHP with some convenient shortcuts layered on top. At a glance, that assumption makes sense. Laravel does reduce boilerplate, speeds up development, and provides many helpers out of the box. But that’s not what makes it powerful. Laravel is not just.

Read full log