Best of LaravelSeptember 2025

  1. 1
    Article
    Avatar of lnLaravel News·30w

    Laravel launches Laravel Learn with two free mini-courses

    Laravel has launched Laravel Learn, a new learning platform featuring two free mini-courses: a refreshed Laravel Bootcamp for absolute beginners and PHP Fundamentals covering the basics that power Laravel. The courses are taught by Josh Cirre and Christoph Rumpel respectively, available both on the dedicated learning site with progress tracking and as full-length YouTube videos. This initiative replaces the deprecated original Bootcamp and aims to provide a gentle entry point for new developers into the Laravel ecosystem.

  2. 2
    Article
    Avatar of wendelladrielW endell Adriel·31w

    Inside the Laravel Service Container

    Laravel's Service Container handles dependency injection and auto-wiring by mapping service requests to their implementations. The container supports various binding types (bind, singleton, instance), contextual bindings for different implementations per consumer, auto-wiring through type hints, tags for grouping services, and extension hooks for decorating existing services. Service providers manage the container lifecycle through register and boot phases, while features like method injection and contextual primitives provide flexible dependency resolution.

  3. 3
    Article
    Avatar of z13ynxxlfAhmed shamim·31w

    Laravel Request Analytics package

    Laravel Request Analytics is a comprehensive web analytics package for Laravel applications that tracks traffic patterns, user behavior, and performance metrics. It features intelligent bot detection, IP geolocation services, GDPR-compliant data handling, and provides insights through an intuitive dashboard and API endpoints.

  4. 4
    Article
    Avatar of lnLaravel News·29w

    Debugging and Logging in Laravel Applications

    A comprehensive guide covering Laravel's built-in debugging and logging capabilities, including tools like Laravel Debugbar, Telescope, and Xdebug for development environments. The guide demonstrates how to implement Sentry for production error tracking, set up structured logging with Monolog, detect slow queries, and use custom tags for better error context and performance monitoring.

  5. 5
    Article
    Avatar of larablogLarablog·30w

    Toast Notifications

    Learn to implement site-wide toast notifications that display backend session messages as contextual UI notifications. The tutorial covers building non-intrusive toast components for success, error, and status messages, plus includes a fix for seeder image path issues when reseeding data.

  6. 6
    Article
    Avatar of lnLaravel News·30w

    PrettyPHP is an opinionated code formatter for PHP

    PrettyPHP is a fast, opinionated code formatter for PHP that runs without configuration and provides sensible defaults. It supports PHP 8.4 and below, formats code for readability and consistency, and includes presets for popular frameworks like Symfony, Drupal, Laravel, and WordPress. The tool is PSR-12 compliant and comes with a VS Code extension for automatic formatting on save.

  7. 7
    Article
    Avatar of freekFREEK.DEV·29w

    Laravel Notifications: dynamic channels, priority, and delayed sending

    Explores advanced Laravel notification features including dynamic channel selection, priority handling, and delayed message delivery. Covers techniques for building more sophisticated notification systems that can adapt channel selection based on context, manage message priorities, and schedule notifications for optimal timing.

  8. 8
    Article
    Avatar of theregisterThe Register·32w

    Beware clever devs, says Laravel inventor Taylor Otwell

    Laravel creator Taylor Otwell warns developers against writing overly complex code, advocating for simple, maintainable solutions over clever implementations. He emphasizes staying within framework conventions rather than bypassing them, as clever solutions often become code smells that cause future problems. Otwell discusses Laravel's evolution since 2010, its dominance in the PHP ecosystem with 61% developer adoption, and his philosophy of keeping software simple and disposable.