Search

Typed Translation Accessors in Laravel 13.15.0 image

Typed Translation Accessors in Laravel 13.15.0

Laravel 13.15.0 adds typed translation accessors, JSON Schema deserialization, a dedicated Cloud queue driver, and security fixes for date validation...

Read article
Refresh Your Laravel Database Without Dropping Every Table image

Refresh Your Laravel Database Without Dropping Every Table

Custom Fresh adds a `fresh:custom` Artisan command that rebuilds your Laravel database while leaving the tables you name untouched.

Read article
JSON Schema Deserialization in Laravel 13.14 image

JSON Schema Deserialization in Laravel 13.14

Laravel 13.14 adds JsonSchema::fromArray() for turning JSON Schema arrays back into Type objects, queue inheritance fixes, job inspection improvements...

Read article
Generate Short, URL-Safe IDs From Numbers With Sqids image

Generate Short, URL-Safe IDs From Numbers With Sqids

Sqids is a PHP library that encodes one or more integers into short, URL-safe strings and decodes them back, with options for minimum length, a custom...

Read article
Scheduler List: A Web Dashboard for Laravel's Scheduled Tasks image

Scheduler List: A Web Dashboard for Laravel's Scheduled Tasks

Scheduler List adds a Pulse-style web interface to Laravel that lists every scheduled task, lets you search and filter them, and can run a task on dem...

Read article
Community Laravel Extension for Zed image

Community Laravel Extension for Zed

Laravel for Zed is a community LSP extension that adds go-to-definition, hover cards, find references, rename, and Blade tooling to the Zed editor thr...

Read article
Advanced Eloquent Query Filtering with Filterable image

Advanced Eloquent Query Filtering with Filterable

Filterable is a Laravel package that provides multiple engines for advanced, scalable filtering of Eloquent models, including support for nested JSON...

Read article
Bulk Job Dispatching with Bus::bulk() in Laravel 13.13 image

Bulk Job Dispatching with Bus::bulk() in Laravel 13.13

Laravel 13.13 adds Bus::bulk() for dispatching many jobs at once, storage-backed notification attachments, PSR-18 HTTP client support, cache memoizati...

Read article
Audit Laravel Apps for Security Issues with Checkpoint image

Audit Laravel Apps for Security Issues with Checkpoint

Checkpoint is a dev-only Artisan command that runs 26 static security checks against a Laravel application, covering dependency CVEs, hardcoded secret...

Read article
In-Memory Eloquent Models with Truffle image

In-Memory Eloquent Models with Truffle

Truffle is a Laravel package that allows Eloquent models to be backed by an in-memory SQLite database, enabling developers to query static data with E...

Read article
Detect and Resolve Laravel Schema Drift with MigrAlign image

Detect and Resolve Laravel Schema Drift with MigrAlign

MigrAlign compares your Laravel migration files against the live database and applies schema changes with risk-aware safeguards for MySQL and MariaDB.

Read article
Laravel Cloud Adds Scale-to-Zero and Spending Limits image

Laravel Cloud Adds Scale-to-Zero and Spending Limits

Laravel Cloud is rolling out Scale-to-Zero Flex compute that wakes the full stack in under 500ms, plus a new $5 Starter plan and hard monthly spending...

Read article
Shift + AI = Fully Automated Laravel Upgrades image

Shift + AI = Fully Automated Laravel Upgrades

Introducing AI skills to fully automate the entire Shift workflow.

Read article
Laracon AU 2026 Announces Full Speaker Lineup, Schedule, and Workshops image

Laracon AU 2026 Announces Full Speaker Lineup, Schedule, and Workshops

Laracon AU has officially unveiled its full 2026 schedule, including all speakers, talks, and workshops for this year's event.

Read article
Parsel: Parse PDFs, Office Documents, and Images in PHP image

Parsel: Parse PDFs, Office Documents, and Images in PHP

Parsel is a PHP package that wraps the liteparse lit CLI to extract text, positioned items, and screenshots from PDFs, Office files, and images locall...

Read article
Typed Objects for Eloquent with Expressive image

Typed Objects for Eloquent with Expressive

Expressive is a Laravel package that converts Eloquent models into typed PHP objects and converts them back to models for persistence, giving your app...

Read article
Malware Blocking and Dependency Policies in Composer 2.10 image

Malware Blocking and Dependency Policies in Composer 2.10

Composer 2.10 adds malware blocking for Packagist.org packages, a new dependency policy configuration system, and several security-focused changes for...

Read article
Aegis for Laravel: Scaffolding and Validation Helpers for Value Objects image

Aegis for Laravel: Scaffolding and Validation Helpers for Value Objects

A string isn't an email until something validates it. Aegis scaffolds the Value Object that fixes that, with validation, Eloquent casting, and a test...

Read article
Playa: Cookie-Based Temporary Players for Laravel image

Playa: Cookie-Based Temporary Players for Laravel

A lightweight Player model for visitors, backed by an HttpOnly cookie and stored in the database.

Read article
Scheduler Attributes and Listener Discovery Control in Laravel 13.12.0 image

Scheduler Attributes and Listener Discovery Control in Laravel 13.12.0

Laravel 13.12.0 adds custom attributes to scheduled events, a ShouldBeDiscovered interface for listeners, opt-out worker restart on lost connection, S...

Read article
The PHP Foundation Launches an Ecosystem Security Team image

The PHP Foundation Launches an Ecosystem Security Team

The PHP Foundation has received a grant from Alpha-Omega to start a dedicated Ecosystem Security Team, with Volker Dusch leading the effort as the AI...

Read article
Manage Subscription Plans and Entitlements in Laravel with Laravel Entitlements image

Manage Subscription Plans and Entitlements in Laravel with Laravel Entitlements

Laravel Entitlements is a package for managing subscription plans, license issuance, and consumption tracking in Laravel SaaS applications.

Read article
Laravel Fluent Validation: An Object-Oriented Rule Builder image

Laravel Fluent Validation: An Object-Oriented Rule Builder

Laravel Fluent Validation provides a fluent, type-safe API for building validation rules, replacing traditional string-based syntax with IDE-friendly...

Read article
Moat: A Security Review for Your GitHub Account image

Moat: A Security Review for Your GitHub Account

Moat is a new tool from Nuno Maduro that reviews the security posture of a GitHub user, organization, or repository and reports settings that fall sho...

Read article
Frontend Nation 2026 Returns June 3-4 with Laravel in the Lineup image

Frontend Nation 2026 Returns June 3-4 with Laravel in the Lineup

Frontend Nation 2026 is back June 3-4 as a free, two-day online event covering web development and AI. Laravel is named in the framework lineup, with...

Read article
Laravel Paper: A Flat-File Eloquent Driver image

Laravel Paper: A Flat-File Eloquent Driver

Laravel Paper is an Eloquent driver that allows you to use Markdown and JSON files as data sources while maintaining the familiar Eloquent query API.

Read article
Simple Feature Flags for Laravel with Laravel Toggle image

Simple Feature Flags for Laravel with Laravel Toggle

Laravel Toggle is a lightweight feature flag package for Laravel that controls global on/off switches through environment variables, the database, or...

Read article
Manage Laravel Cloud Deployments Inside PhpStorm image

Manage Laravel Cloud Deployments Inside PhpStorm

PhpStorm just shipped a new Laravel tool window that lets you manage and troubleshoot Laravel Cloud deployments without leaving the IDE.

Read article
Piper: Laravel-Style Array and String Helpers for PHP's Pipe Operator image

Piper: Laravel-Style Array and String Helpers for PHP's Pipe Operator

Piper is a Spatie package that ports Laravel's collection and string methods to standalone functions built for PHP 8.5's pipe operator.

Read article
Storage Cache Store in Laravel 13.10.0 image

Storage Cache Store in Laravel 13.10.0

Laravel 13.10.0 adds a filesystem-backed storage cache store, a --stop-when-empty-for queue worker option, a WorkerIdle event, schedule group lifecycl...

Read article
Laravel MongoDB Full-Text Search tutorial: The Art of the Relevancy image

Laravel MongoDB Full-Text Search tutorial: The Art of the Relevancy

Laravel tutorial for full-text search with MongoDB Search: BM25 indexing, relevancy scoring, and field weighting to tune result quality.

Read article
Drag-and-Drop Sorting for Eloquent Models with Reorderable for Laravel image

Drag-and-Drop Sorting for Eloquent Models with Reorderable for Laravel

Laravel Reorderable adds drag-and-drop sorting to Eloquent models with Blade and Livewire UI components, grouped reordering, and an artisan generator...

Read article
Ship AI with Laravel: Real-Time Streaming Chat UI with Livewire image

Ship AI with Laravel: Real-Time Streaming Chat UI with Livewire

The agent's been talking to us through JSON. In this episode we build a real-time chat widget with Livewire, Alpine, and server-sent events so respons...

Read article
Use a Google Sheet as Your Laravel Database with the Google Sheets Database Driver image

Use a Google Sheet as Your Laravel Database with the Google Sheets Database Driver

Laravel Google Sheets Database Driver let's you register Google Sheets as a database connection, so Eloquent and migrations can read and write directl...

Read article
Larapanda: A Type-Safe Lightpanda Browser SDK for Laravel image

Larapanda: A Type-Safe Lightpanda Browser SDK for Laravel

Larapanda wraps the Lightpanda headless browser in a type-safe Laravel SDK with named instance profiles, CLI/Docker runtime resolution, and adapters f...

Read article
Generate HTML Password Rules Attribute in Laravel 13.9.0 image

Generate HTML Password Rules Attribute in Laravel 13.9.0

Laravel 13.9.0 adds a method to generate HTML passwordrules attributes from your Password validation rule, Cloud queue metrics, optional disk storage...

Read article
DHH Joins Laravel Live Denmark 2026 for Fireside Chat with Taylor Otwell image

DHH Joins Laravel Live Denmark 2026 for Fireside Chat with Taylor Otwell

Laravel Live Denmark announced this week that David Heinemeier Hansson (DHH), creator of Ruby on Rails, will appear on stage at the 2026 event in Cope...

Read article
Model-Based Scheduling for Laravel with Cadence image

Model-Based Scheduling for Laravel with Cadence

Cadence is a Laravel package that attaches cron or RRULE schedules directly to your Eloquent models and fires events when they're due.

Read article
Laravel's AI SDK adds sub-agents image

Laravel's AI SDK adds sub-agents

Laravel's AI SDK now lets you hand off agents as tools to other agents, turning the SDK into a proper orchestration layer.

Read article
Laravel Introduces First-Party Passkey Authentication Support image

Laravel Introduces First-Party Passkey Authentication Support

Laravel released a new first-party passkey authentication package with WebAuthn support for Face ID, Touch ID, Windows Hello, and security keys.

Read article
Acquaint Softtech logo

Acquaint Softtech

Acquaint Softtech offers AI-ready Laravel developers who onboard in 48 hours at $3000/Month with no lengthy sales process and a 100 percent money-back guarantee.

Acquaint Softtech
Blastup logo

Blastup

Blastup provides social media enhancement services including buying Instagram likes, followers, and views, with features like instant delivery and a variety of packages to suit different needs.

Blastup
Tighten logo

Tighten

We help companies turn great ideas into amazing apps, products, and services.

Tighten
The Certification of Competence for Laravel logo

The Certification of Competence for Laravel

A community-driven, proctored assessment across 4 levels designed to validate real-world Laravel knowledge, from Junior to mastery-level Artisan. Official Vue.js, Official Nuxt, Angular, React, JS certifications also available.

The Certification of Competence for Laravel
Curotec logo

Curotec

World class Laravel experts with GenAI dev skills. LATAM-based, embedded engineers that ship fast, communicate clearly, and elevate your product. No bloat, no BS.

Curotec
Securing Laravel logo

Securing Laravel

The essential security resource for Laravel devs, covering everything you need to keep your apps secure. Sign up to receive weekly security tips and monthly in depth articles, diving deep into security concepts you need to know!

Securing Laravel