Blog
April 3, 2026
AI Won't Replace Programmers. It Will Replace Those Who Never Learned to Be One
I've been hearing the exact same thing for weeks now. On Twitter, on LinkedIn, in conversations with friends who don't even code. "Learning to program is pointless now." "Anything can be built...
ReadApril 3, 2026
Your Laravel Controllers Are Doing Too Much. Fix Them With Services
If you've ever scrolled through a Laravel controller method that stretches past 150 lines, you already know something went wrong. That store() method started innocent enough: a couple of...
July 6, 2025
How to Use Bootable Traits in Laravel
Bootable traits are the stealth feature that lets you share event‑driven behavior across Eloquent models without littering every class with boot methods or external observers. Any...
July 5, 2025
How to Stream Large File Uploads to AWS S3 in Laravel
Handling multi‑gigabyte uploads in a stateless app is painful: TCP throughput caps slow single‑request uploads, server disks fill, and Lambda containers vanish between requests. Modern teams...
Read