Best of LaravelFebruary 2026

  1. 1
    Article
    Avatar of lnLaravel News·8w

    What We Know About Laravel 13

    Laravel 13 is scheduled for Q1 2026 and will require PHP 8.3 as the minimum version. The headline feature is first-class PHP 8 Attributes support as an alternative to class properties for configuring Eloquent models (e.g., #[Table], #[Fillable], #[Hidden]), queue jobs (#[Connection], #[Tries], #[Timeout]), console commands (#[Signature]), form requests, API resources, and more. A new Cache::touch() method allows extending a cached item's TTL without fetching or re-storing the value, using driver-native commands like Redis EXPIRE. Support timeline runs bug fixes through Q3 2027 and security fixes through Q1 2028.

  2. 2
    Article
    Avatar of lnLaravel News·8w

    Laravel Adds an Official Svelte + Inertia Starter Kit

    Laravel now offers an official Svelte starter kit, complementing existing React, Vue, and Livewire options. The kit combines Svelte 5 with TypeScript, Inertia 2, Tailwind CSS, shadcn-svelte, bits-ui, and Vite. Authentication is powered by Laravel Fortify and includes login, registration, password reset, email verification, and two-factor auth. The kit ships with sidebar and header layouts, multiple variants for each, and SSR support out of the box. New projects can be bootstrapped via `laravel new my-app` and selecting Svelte when prompted.

  3. 3
    Article
    Avatar of lnLaravel News·9w

    Nimbus: An In-Browser API Testing Playground for Laravel

    Nimbus is a Laravel package that provides an in-browser API testing playground for development. It automatically discovers routes and validation rules from FormRequest classes, Spatie Data objects, or OpenAPI specs. Key features include transaction mode for testing destructive operations without data loss, user impersonation for authorization testing, shareable request configurations, automatic test data generation, and dd() output handling. Unlike Swagger or Scribe, it's not for customer-facing documentation but rather a developer tool to speed up API iteration.

  4. 4
    Article
    Avatar of lnLaravel News·9w

    Capture Web Page Screenshots in Laravel with Spatie's Laravel Screenshot

    Spatie's Laravel Screenshot package enables web page screenshot capture in Laravel applications through a driver-based architecture. It supports two drivers: Browsershot (using Chromium) and Cloudflare Browser Rendering API. Key features include customizable viewport dimensions, image quality control, queued background processing with callbacks, testing utilities with fake mode, and flexible disk storage options. The package defaults to 1280x800 viewport with 2x device scale factor and PNG format, waiting for network idle before capture.

  5. 5
    Article
    Avatar of do_communityDigitalOcean Community·7w

    How To Set Up Laravel, Nginx, and MySQL with Docker Compose

    A comprehensive step-by-step guide to containerizing a Laravel application using Docker Compose with Nginx and MySQL. Covers creating a docker-compose.yml with three services (PHP-FPM app, Nginx webserver, MySQL db), writing a custom Dockerfile based on php:8.3-fpm, configuring PHP settings via local.ini, setting up Nginx with FastCGI proxying to PHP-FPM, persisting MySQL data with named volumes, configuring Laravel's .env for container-based DB connections, running Artisan migrations inside containers, and troubleshooting common issues like 502 errors, permission problems, and database connection failures.

  6. 6
    Article
    Avatar of lnLaravel News·8w

    Laravel Releases Nightwatch MCP Server for Claude Code and AI Agents

    Laravel has released Nightwatch MCP, a Model Context Protocol server that enables AI agents like Claude Code to diagnose and resolve application issues. The tool exposes Laravel application context in a structured format, allowing developers to troubleshoot problems through conversational AI. Installation is straightforward for Laravel Boost users via composer update and artisan commands.

  7. 7
    Article
    Avatar of laravelLaravel·10w

    Laravel January Product Releases

    Laravel's January 2025 releases introduce Private Cloud for enterprise deployments with dedicated Kubernetes infrastructure, Valkey caching with improved latency, and expanded Cloud API coverage. Forge adds Hetzner S3 backup support and automatic branch selection. Nightwatch gains AI-powered exception descriptions and real-time detection. The framework adds isolated Blade includes, vector embedding support, JSON:API resources, and backed enum support for session/cache keys. Inertia introduces form context hooks, while Boost 2.0 ships Skills for AI agents. Additional updates span Echo, Horizon, Pint, Pulse, and the VS Code extension with Livewire 4 support throughout.

  8. 8
    Article
    Avatar of lnLaravel News·8w

    Generate Secure, Memorable Passphrases in PHP with PHP Passphrase

    PHP Passphrase is a Bitwarden-inspired package that generates secure, human-readable passphrases by combining random words from the EFF word list. It offers customizable options for word count, separators, capitalization, and number inclusion, with first-class Laravel integration through facades and dependency injection, plus standalone PHP usage. The package supports custom word lists and includes publishable configuration for Laravel projects.

  9. 9
    Article
    Avatar of larablogLarablog·10w

    NativePHP For Desktop

    NativePHP enables building native desktop applications using Laravel and PHP on top of Electron. Installation is straightforward via Composer, and development includes live reload capabilities through `composer native:dev`. The framework exposes Electron's native APIs to Laravel through an HTTP bridge, allowing PHP code to control desktop features like dock icons, menus, and badges. The architecture uses TypeScript files to wrap Electron functionality and PHP facades for developer-friendly access. The project is MIT-licensed, open source, and actively welcomes community contributions.

  10. 10
    Article
    Avatar of lnLaravel News·7w

    Livewire v4.2.0 Released with Security Hardening and Laravel 13 Support

    Livewire v4.2.0 has been released with Laravel 13 compatibility and seven targeted security hardening improvements. Security changes include lifecycle method protection against frontend invocation, timing-safe checksum comparison using hash_equals(), payload schema validation, stricter X-Livewire header and JSON content type requirements, and web middleware enforcement on custom update routes. New developer features include reactive props during boot hooks and a $errors.clear() method on the JavaScript errors object. Bug fixes address an EventBus listener memory leak under Octane, silent failures for non-UTF-8 property data, broken route model binding with cached middleware, and wire:model failures with string array keys. No breaking changes are expected for typical applications.

  11. 11
    Video
    Avatar of codeheadCodeHead·8w

    99% of devs DON'T UNDERSTAND Laravel...

    Laravel provides powerful built-in features that most developers ignore, leading to bloated, hard-to-maintain code. Key underutilized features include the service container for automatic dependency injection, advanced Eloquent relationship methods with eager loading to prevent N+1 queries, and the queue system with Horizon for background job processing. Instead of writing manual solutions, developers should leverage Laravel's framework capabilities for cleaner, more scalable applications.

  12. 12
    Article
    Avatar of laravelLaravel·9w

    Larabelles: Building Space in the Laravel Community

    Larabelles is a non-profit organization founded in 2020 to create space for underrepresented developers in the Laravel community, particularly non-male developers. The organization offers conference scholarships, mentorship, networking opportunities, and a public directory to increase visibility and representation. Since launching its scholarship program in 2023, Larabelles has helped dozens attend Laravel conferences, with recipients reporting transformative career impacts including direct job opportunities. The community continues expanding in 2026 with scholarships to major Laravel events, a new podcast, and growing global membership.

  13. 13
    Article
    Avatar of laraveldevLaravel Dev·10w

    Let agents find packages for you, mcp server for laraplugins.io

    Laraplugins.io has launched an MCP (Model Context Protocol) server that enables AI agents to search, inspect, and check the health status of Laravel packages. This integration allows developers to use AI assistants to discover and evaluate Laravel packages programmatically.

  14. 14
    Video
    Avatar of laraveldailyLaravel Daily·8w

    NEW: Laravel Svelte Starter Kit! (and more Laravel news)

    Laravel released a new Svelte starter kit for Laravel 12, becoming the fourth official starter kit alongside React, Vue, and Livewire options. The kit uses Inertia.js, Svelte 5, TypeScript, Tailwind CSS, and shadcn-svelte components. The video walks through installation using the Laravel installer and reviews the project structure. Additional Laravel ecosystem news includes: Laravel Nightwatch MCP integration for AI-assisted bug fixing, Nightwatch and Linear issue tracker integration, markdown-for-agents support in Laravel Cloud, a 'Continue with Google' button on Laravel Cloud powered by WorkOS, ongoing updates to Laravel AI SDK (v0.1.4) and Laravel Boost, and a side project called radio.laravel.cloud for background productivity music.

  15. 15
    Article
    Avatar of lnLaravel News·9w

    Laravel 12.51.0 Adds afterSending Callbacks, Validator whenFails, and MySQL Timeout

    Laravel 12.51.0 introduces notification afterSending callbacks for post-send logic, fluent whenFails and whenPasses validator methods for non-HTTP contexts, and a MySQL-specific query timeout method. The release adds closure support in firstOrCreate and createOrFirst for lazy evaluation of expensive operations, a BatchCancelled event for monitoring batch job cancellations, and the ability to use Eloquent builders directly as subqueries in updates. Additional improvements include a withoutHeader response method, enhanced batch testing assertions, cache isolation for parallel tests, and numerous bug fixes across database operations, string helpers, queue middleware, and framework internals.

  16. 16
    Article
    Avatar of laravelLaravel·7w

    Your AI Agent Can Now Deploy to Laravel Cloud (and Write This Blog)

    Laravel Cloud has opened early access to its REST API, enabling AI agents to manage cloud infrastructure through conversation. Florian Beer, an Infrastructure Engineer at Laravel, built a 400-line bash CLI wrapper called the `laravel-cloud` skill that covers all 19 resource categories of the API — deployments, databases, caches, domains, scaling, and more. The skill is installable via `clawhub install laravel-cloud` and works with any OpenClaw-compatible AI agent setup. The post (itself written by an AI bot) explains the design rationale for using bash (zero setup friction), demonstrates example agent interactions, and argues that clean, well-documented APIs like Laravel Cloud's are well-positioned for the emerging era of action-taking AI agents.

  17. 17
    Article
    Avatar of collectionsCollections·10w

    Official Laravel AI SDK Offers Seamless Integration of AI Capabilities

    Laravel released an official AI SDK in beta that provides a unified API for integrating multiple AI providers (OpenAI, Anthropic, Google Gemini, ElevenLabs) into Laravel applications. The SDK supports text generation, image creation, audio processing, embeddings, vector searches, and streaming responses. It features deep Laravel integration with queues and filesystem operations, automatic provider fallbacks, built-in testing fakes, and support for building AI agents with memory retention and structured outputs. The SDK enables developers to create provider-agnostic, testable AI-powered applications like lead qualification systems, semantic search, and RAG systems.