8 min read
Laravel Middleware: A Practical Guide to Request Flow
Laravel middleware controls every request your app handles. Learn to write, register, and order middleware for auth, throttling, and request mutation.

Notes on building web applications: Next.js, Laravel, databases, and the automation around them.
8 min read
Laravel middleware controls every request your app handles. Learn to write, register, and order middleware for auth, throttling, and request mutation.

8 min read
Laravel caching strategies that cut database load: Redis drivers, cache tags, atomic locks, and stampede protection with real code.

6 min read
Master Laravel validation with custom rules, form requests, and real-time techniques to keep bad data out of your PostgreSQL database and APIs for good.

6 min read
Master the Laravel service container: bindings, singletons, contextual injection, and interface resolution to write testable Laravel code with zero guesswork.

7 min read
Laravel queue best practices for production: retries, backoff, timeouts, idempotency, and failed job handling that keeps background jobs reliable.
6 min read
Eloquent N+1 problems quietly destroy Laravel performance. Learn to detect, fix, and prevent them with eager loading, chunking, and query auditing in production.