Skip to main content
ArticlesProjects
Tag Archive

Articles Tagged: laravel

Technical writings, opinionated architectures, and development guides tagged with laravel.

Articles95
Est. Read Time875 mins
Categories7
Featured5
Apr 20269 min read
Laravel

Building Modern Laravel APIs: The Action Pattern

Building a lead enrichment and scoring pipeline in Laravel 13 using the AI SDK, structured agents, composable Action classes, and PHP enums for type-safe status management.

Apr 20268 min read
Laravel

Building Modern Laravel APIs: Authentication with JWT

Add JWT auth to a Laravel API with register, login, refresh, and logout flows using Form Request DTOs, Action classes, and auth:api middleware.

Apr 202610 min read
Laravel

Building Modern Laravel APIs: Foundations and Project Structure

Start the Modern Laravel APIs series by structuring Pulse-Link for production with clear layers, ULIDs, action classes, DTO requests, and versioning.

Apr 20267 min read
Laravel

Building Modern Laravel APIs: Ingesting Leads

Implement lead ingestion in Laravel with Form Request validation, typed DTO payloads, Action classes, and JSON:API responses for POST /v1/leads.

Apr 20266 min read
Laravel

Building Modern Laravel APIs: Routing, Versioning, and API Contracts

Learn how to version Laravel API routes, signal deprecations with Sunset headers, and keep API contracts aligned with your implementation.

Mar 202627 min read
Laravel

Implementing the Saga Pattern in a Laravel Monolith

Learn how to implement the Saga pattern in Laravel to coordinate external APIs, recover from failures, and keep data consistent.

Feb 20266 min read
Laravel

Why your Laravel controllers should be almost empty

Controllers are a transport layer, not a home for business logic. How I keep Laravel controllers down to a handful of lines using Form Requests, payloads, and Action classes.

Feb 20267 min read
DevOps

The overlooked Git feature every Laravel developer should be using

Use Git worktrees to maintain multiple isolated Laravel environments simultaneously without stashing or reinstalling dependencies.

Jan 20268 min read
DevTools

Building a Claude Code skill

Create portable instruction manuals for Claude to teach domain-specific approaches, with a deep dive into building a production-grade Laravel API skill.

Jan 202612 min read
Laravel

Streaming responses in Laravel without WebSockets

Learn how to implement server-sent events (SSE) in Laravel for streaming AI responses, avoiding the complexity of WebSockets.

Jan 202615 min read
DevOps

Kubernetes for Laravel developers

Learn how Laravel developers can leverage Kubernetes for scalable and efficient application deployment.

Jan 20269 min read
DevOps

Isolated local development without Docker

Learn how to use Devbox to create isolated local development environments for Laravel projects without the overhead of Docker.