The Laracon AU 2025 schedule is now live, with the full list of talk titles published today! The post Laracon…
Laravel
Transform messy Laravel controllers with 15+ lines of calculations into clean, three-line coordinators using custom collection methods. This practical tutorial…
Handle ownership relationships between Eloquent models in a flexible way with Laravel Ownable. The post Handle ownership relationships between Eloquent…
Laravel’s ThrottlesExceptions middleware now includes the failWhen() method, providing enhanced job failure control. Unlike deleteWhen(), this method marks jobs as…
Automate Laravel applications efficiently using the Task Scheduler. Replace traditional cron jobs with expressive scheduling methods that support complex timing,…
LaraPath is a secure, fluent path builder for PHP, featuring sanitization strategies and Laravel integration for version 11+. The post…
Enhance Laravel Livewire performance using computed properties with caching. The #[Computed] attribute prevents expensive re-calculations by intelligently caching method results,…
The SmartCache package for Laravel by Ismael Azaran is a caching optimization package designed to enhance how your application handles…
Useful Laravel links to read/watch for this week of August 28, 2025. Source: Read MoreÂ
The Laravel team released version 12.26.0 this week, adding a withHeartbeat() method to Lazy collections, along with the latest framework…
Perform RDAP queries in a Laravel app Source: Read MoreÂ
Mercure broadcaster Source: Read MoreÂ
The Laravel Zxcvbn package is a validation rule that estimates password strength using a PHP port of Dropbox’s JS package.…
Simplify Laravel string validation using doesntStartWith() and doesntEndWith() methods. These inverse methods eliminate confusing double negatives, creating more readable validation…
Learn how to use SQLite effectively in Laravel apps. This guide covers WAL mode, busy timeouts, Eloquent casts, and transaction…
The Laravel Spy package is a lightweight package to track and log outgoing HTTP requests in your application. It features…
The auth package to make authentication in your laravel applications easy to use. Source: Read MoreÂ
Streamline cross-platform messaging in Laravel applications using the notification framework. Send consistent alerts via email, database, and external services through…
Notable is a Laravel package that adds polymorphic note functionality to any Eloquent model. It allows you to attach notes/comments…
Implement Laravel soft deletes to preserve data integrity while enabling logical deletion. This powerful feature supports compliance requirements, audit trails,…