Loading…
Loading…
Tag
47 posts

June 23, 2026
AI assistants generate Laravel code fast, but rarely in a consistent house style. This post distills a battle-tested set of Laravel & PHP conventions — typed properties, happy-path-last control flow, naming rules, and testing structure — into a guide you can drop straight into your AI tooling. Inspired by Spatie's well-known guidelines.

October 12, 2025
Learn how to implement PostgreSQL full-text search in Laravel with tsvector, GIN indexes, and ranking functions for superior search performance and relevance.

October 4, 2025
Tired of writing the same Laravel code over and over? This post reveals 8 advanced Laravel features that most developers never discover. Learn how custom route model bindings, Blade directives, queue closures, and memory-safe data processing can dramatically improve your application's performance and maintainability. Perfect for Laravel developers ready to level up their skills.

August 29, 2025
Laravel makes it easy to ship fast, but that often leads to tight coupling between business logic and infrastructure. Hexagonal Architecture (Ports & Adapters) helps by separating your core domain from frameworks and vendors, making tests faster, integrations swappable, and long-term maintenance smoother. In this blog, we'll break down what Hexagonal means in Laravel terms, where it shines, where it's overkill, and how it compares with MVC and other approaches.
July 30, 2025
Learn how to use the Laravel MCP SDK to build MCP servers that allow AI assistants like Claude and ChatGPT to interact with your Laravel application through standardized tools, resources, and prompts.
June 2, 2025
Complete guide to building scalable recommendation systems in Laravel using event-driven architecture. Covers Spatie Event Sourcing vs Verbs, CQRS patterns, real-time broadcasting, and microservices architecture with practical code examples and production insights from companies like Fathom Analytics.
May 23, 2025
Discover how to use try-catch blocks effectively in Laravel for clean architecture and robust error handling.
March 24, 2025
Learn essential tips and practical examples on how to optimize your PHP and Laravel applications to run faster and smoother, including caching, eager loading, smarter algorithms, and using helpful profiling tools.