Best of Laravel NewsJanuary 2026

  1. 1
    Article
    Avatar of lnLaravel News·17w

    Laravel Debugbar v4.0.0 is released

    Laravel Debugbar v4.0.0 has been released with package ownership transferring from barryvdh to fruitcake. The major release includes php-debugbar 3.x support, new collectors for HTTP Client, Inertia.js, and enhanced Livewire support (versions 2-4). It adds Laravel Octane compatibility, removes jQuery in favor of modern JavaScript, and includes UI improvements like themes and positioning options. Breaking changes include namespace changes to Fruitcake\LaravelDebugbar, removal of socket storage, Lumen support, and PDO extension functionality. Manual package removal and reinstallation is required for upgrading.

  2. 2
    Article
    Avatar of lnLaravel News·19w

    PHP DebugBar v3 is released

    PHP DebugBar v3.0.0 has been released with significant modernization updates including removal of jQuery in favor of vanilla JavaScript classes, replacement of FontAwesome with lightweight Tabler SVG icons, improved performance through lazy widget rendering, and comprehensive type hints with static analysis. The release includes new features like top-positioning option, improved timeline support, backtrace for queries, and a new AssetHandler. This major version introduces breaking changes affecting custom widgets (now JavaScript classes), data collectors (new type hints and method signatures), removed legacy support (jQuery bindings, Assetic, RequireJS), and updated interfaces requiring code adjustments for deep integrations.

  3. 3
    Article
    Avatar of lnLaravel News·19w

    What's new in Filament v4.5?

    Filament v4.5 introduces several quality-of-life improvements including @mentions in the rich text editor with customizable trigger characters, user-resizable images in the editor, aspect ratio enforcement for file uploads with automatic cropping, JavaScript actions for instant client-side interactions without network requests, a new saved() method for preventing field persistence, simplified 2FA setup using traits instead of manual interface implementation, and comprehensive documentation for modular architecture and Domain-Driven Design integration.

  4. 4
    Article
    Avatar of lnLaravel News·19w

    The Nueron AI Framework for PHP and Laravel

    Nueron AI is a PHP agentic framework for building production-ready AI applications with dedicated Laravel integration. The framework provides typed interfaces for creating AI agents with features like chat history management, tool integration, and workflow support. Laravel developers can use Artisan commands to generate agents, tools, and workflows, while the framework handles LLM context management and conversation truncation automatically. Chat history can be stored in-memory, files, databases, or custom storage implementations. The neuron-laravel package includes configuration files, facades for providers and vector stores, Eloquent migrations, and AI coding assistant guidelines.

  5. 5
    Article
    Avatar of lnLaravel News·20w

    A new beta of Laravel Wayfinder just dropped

    Laravel Wayfinder's new beta automatically generates fully-typed TypeScript from Laravel PHP code, eliminating manual maintenance of route URLs, request types, and API contracts. The update now transforms routes, form requests, Eloquent models, PHP enums, Inertia page props and shared data, broadcast channels and events, and Vite environment variables into TypeScript. Key improvements include automatic TypeScript type generation for Inertia page props, validation-based types that work with Inertia's useForm hook, PHP enum representations, and enhanced Laravel Echo hooks with payload inference. The release introduces two new tools: Surveyor for static code analysis and Ranger for entity discovery with rich DTOs.

  6. 6
    Article
    Avatar of lnLaravel News·18w

    Fair Queue Distribution with Laravel Balanced Queue

    Laravel Balanced Queue is a package that solves the FIFO queue monopolization problem by distributing jobs across user or tenant partitions. It offers three rotation strategies (round-robin, random, smart), per-partition concurrency limiting to prevent worker exhaustion, and monitoring tools. The package integrates with Laravel Horizon and requires PHP 8.0+, Laravel 9.0+, and Redis as the queue driver.