Best of PHPSeptember 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 distilledCode Distilled·31w

    FrankenPHP vs PHP-FPM

    A performance comparison between FrankenPHP and PHP-FPM examining CPU usage, memory consumption, and operational costs. The analysis reveals that FrankenPHP with workers offers superior performance for high-traffic applications, providing lower latency and higher throughput. The comparison includes recommendations for when to choose each solution based on traffic patterns and infrastructure requirements.

  3. 3
    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.

  4. 4
    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.

  5. 5
    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.

  6. 6
    Article
    Avatar of freekFREEK.DEV·30w

    No more down migrations

    Tempest framework has refactored its database migration system, eliminating the need for down migrations. This change simplifies the migration workflow by removing the complexity of rollback functionality, focusing on forward-only database schema changes.

  7. 7
    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.

  8. 8
    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.

  9. 9
    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.