What's New in PHP 8.6
What is new in PHP 8.6. It's not long now until the release of PHP 8.6 So if you've not been keeping up to date with whats being included in this new release checkout this article to find out more.
What is new in PHP 8.6. It's not long now until the release of PHP 8.6 So if you've not been keeping up to date with whats being included in this new release checkout this article to find out more.
Laravel Live Denmark 2026 conference talks are now freely available on YouTube, made possible by ticket attendees who supported the event and helped share knowledge with the wider community.
Explore a sophisticated approach to optimising Laravel Horizon's worker allocation using logarithmic scaling, which intelligently balances queue workloads with vastly different arrival patterns and sizes to prevent worker starvation on high-throughput queues.
A deep dive into Laravel's queue system, exploring how jobs are processed and managed behind the scenes. Perfect for developers looking to understand the mechanics of asynchronous task handling in Laravel.
Explores the race condition that occurs when dispatching queue jobs within database transactions, explaining why the issue appears only with certain queue drivers and how to resolve it using the `after_commit` configuration option.
A deep dive into PHP string functions and UTF-8 encoding, exploring why strlen, mb_strlen, and grapheme_strlen produce different results and how to correctly handle multibyte characters like accents and emoji.
Explore Laravel's new copyToDisk and moveToDisk methods that simplify moving files between storage disks, eliminating boilerplate code and resource management concerns. This practical enhancement streamlines common file operation patterns whilst maintaining robust error handling.
Tom Herrmann explores the technical implementation of building a Model Context Protocol (MCP) server for Archivist AI using Laravel, covering the evolution from a simple read-only API wrapper to a secure OAuth-authenticated system that integrates campaign data with AI tools like Cursor and ChatGPT.
A comprehensive guide from The PHP Foundation exploring the IEEE 754 floating-point precision issues in PHP, including practical examples of how floats behave with calculations and strategies for working with them safely and correctly.
An in-depth exploration of common architectural pitfalls in Laravel applications that seem reasonable initially but become problematic as your codebase grows, covering controller bloat, model responsibility overload, and other patterns to avoid.
Laravel Scalpel is an intrusion evidence scanner from Harry Agustiana. It runs inside a Laravel application and checks the filesystem for signs such as rogue PHP files, obfuscated code, altered server directives, and changes since a known-good snapshot.
A technical deep dive into extending Laravel Horizon's dashboard without forking or modifying the package, using innovative techniques to patch rendered HTML and integrate custom UI into the compiled Vue bundle.
A detailed technical exploration of token cost inefficiencies in Laravel AI agents that remember conversations, demonstrating how tool results accumulate across turns and proposing practical solutions for managing context hygiene.
A practical guide to temporarily adjusting MySQL's sql_mode during database migrations without permanently altering your server configuration, ideal for handling legacy data with strict mode conflicts.