LaravelOptimizing Eloquent Relationships- Sep 04, 2025Using hasOneThrough and hasManyThrough to simplify access intermediate data in Laravel.
LaravelValidationFloating Point Validation- Jul 13, 2025Validating floating point numbers in JSON payloads is tricky. Learn about the 'decimal' rule improvements.
LaravelValidationMastering Omit and Include Validation Rules- Jun 03, 2025Handle exclusion logic cleanly in Laravel validation without complex conditional callbacks.
LaravelDatabaseSQLite by Default- May 20, 2025Why Laravel 11 chose SQLite as the default database for new applications and why it is production-ready for many use cases.
LaravelPerformanceThe Defer Helper- Apr 28, 2025Use the defer() helper to execute code after the HTTP response has been sent to the user, without setting up a queue.
LaravelCLILaravel Prompts- Apr 13, 2025Enhance your Artisan commands with Laravel Prompts, a user-friendly way to gather input in the CLI.
LaravelEloquentNative Eager Load Limit- Mar 25, 2025Laravel 11 brings native support for limiting eager loaded relationships, fixing a long-standing "n+1 with limit" issue.
LaravelCLINew Artisan Make Commands- Mar 03, 2025Laravel 11 adds helpful artisan commands like make:class, make:enum, and make:interface to speed up your workflow.
LaravelConfigurationSimplifying Config Files in Laravel 11- Feb 15, 2025Laravel 11 config files are empty by default. Learn how to publish only what you need to keep your app clean.
LaravelLoggingUsing Context for Request Tracing- Jan 18, 2025Learn about the new Context service in Laravel 11 to pass information through the request lifecycle, perfect for logging trace IDs.
LaravelRealtimeLaravel Reverb Basics- Dec 29, 2024Introduction to Laravel Reverb, the new first-party WebSocket server for Laravel applications introduced in 2024.
LaravelSecurityGraceful Encryption Key Rotation- Dec 10, 2024Laravel 11 allows you to rotate your APP_KEY without logging out all users or invalidating all encrypted data.
LaravelAPIPer-Second Rate Limiting- Nov 24, 2024Laravel 11 finally adds support for per-second rate limiting, allowing for more granular API controls.
LaravelPerformanceThe Once Helper for Memoization- Oct 27, 2024Use the new once() helper in Laravel 11 to easily cache the result of a usage for the duration of the request.
LaravelSchedulingDefining Schedule in Routes Console- Sep 27, 2024In Laravel 11, the Console Kernel is gone. Learn how to define your scheduled tasks directly in routes/console.php.