Confidently Extract Single Array Items with Laravel's Arr::sole() Method https://laravel-news.com/arr-sole
Laravel News
Confidently Extract Single Array Items with Laravel's Arr::sole() Method - Laravel News
Laravel's Arr::sole() method retrieves a single matching item from arrays while validating uniqueness. This powerful utility throws exceptions for missing or multiple matches, ensuring data integrity and reducing manual validation code in array operations.
Generate HTTP Fixtures from Live API Calls in Laravel https://laravel-news.com/http-fixtures-laravel-package
Laravel News
Generate HTTP Fixtures from Live API Calls in Laravel - Laravel News
The HTTP Fixtures package for Laravel generates fake JSON responses for external API calls in tests. It simplifies creating mock responses by integrating with Faker to generate realistic test data.
Enhance Validation Testing Precision with Laravel's assertOnlyJsonValidationErrors https://laravel-news.com/assertOnlyJsonValidationErrors
Laravel News
Enhance Validation Testing Precision with Laravel's assertOnlyJsonValidationErrors - Laravel News
Laravel's assertOnlyJsonValidationErrors method revolutionizes validation testing by verifying both the presence of expected errors and the absence of unexpected ones in a single assertion, helping developers catch subtle validation bugs and ensure complete…
Centralize HTTP Client Configuration with Laravel's globalOptions Method https://laravel-news.com/http-globaloptions
Laravel News
Centralize HTTP Client Configuration with Laravel's globalOptions Method - Laravel News
Laravel's globalOptions method centralizes HTTP client configuration, enabling consistent request behavior across your application. This feature reduces duplication by establishing global defaults for timeouts, headers, and retry logic while preserving flexibility…
Track Job Progress and Status in Laravel with the Laravel Job Status Package https://laravel-news.com/laravel-job-status-package
Laravel News
Track Job Progress and Status in Laravel with the Laravel Job Status Package - Laravel News
The laravel-job-status package provides a simple way to track the status and progress of your queued jobs. The package allows you to query and display the current progress, status, and results of any background job in your application.
Precise Number Formatting with Laravel's Enhanced Number::spell Method https://laravel-news.com/numberspell
Laravel News
Precise Number Formatting with Laravel's Enhanced Number::spell Method - Laravel News
Laravel's Number::spell method now offers 'until' and 'after' threshold parameters, allowing precise control over when numbers appear as words versus digits. This enhancement helps developers implement typography best practices with minimal code for improved…
All About the Filament v4 Beta Release https://laravel-news.com/all-about-the-filament-v4-beta-release
Laravel News
All About the Filament v4 Beta Release - Laravel News
We've had a lot of exciting news come from the Filament project over the past few years, but none has been more avidly requested than news on the v4 release. Well, today, in this post, we're going to drop some exciting details about the v4 Beta that will…
Typed Arr Getters Added in Laravel 12.11 https://laravel-news.com/laravel-12-11-0
Laravel News
Typed Arr Getters Added in Laravel 12.11 - Laravel News
The Laravel team released v12.11.0, which includes typed Arr getter methods, job payload additions, FakeJob now implements the Job contract, and more.
Implement Conditional Migrations in Laravel with the New shouldRun() Method https://laravel-news.com/migration-shouldrun
Laravel News
Implement Conditional Migrations in Laravel with the New shouldRun() Method - Laravel News
Laravel's shouldRun() method enables migrations to execute conditionally based on application state. This feature streamlines feature-flagged development by allowing database changes to activate only when needed, simplifying phased rollouts in multi-tenant…
Streamline Mass Insertions with Laravel's fillAndInsert() Method https://laravel-news.com/fillandinsert
Laravel News
Streamline Mass Insertions with Laravel's fillAndInsert() Method - Laravel News
Laravel's fillAndInsert() method combines the performance of bulk insertions with Eloquent's model-level casting and attribute preparation. This feature eliminates the traditional speed-vs-functionality trade-off when working with mass data operations.
Argonaut DTO Package for Laravel https://laravel-news.com/argonaut-dto-package-for-laravel
Laravel News
Argonaut DTO Package for Laravel - Laravel News
The Argonaut DTO for Laravel is a lightweight Data Transfer Object (DTO) package that supports nested casting, recursive serialization, and validation out of the box.
A first look at Laravel Nightwatch https://laravel-news.com/a-first-look-at-laravel-nightwatch
Laravel News
A first look at Laravel Nightwatch - Laravel News
Laravel Nightwatch delivers unparalleled insights into your application's performance, with the intelligence only a system obsessively optimized for Laravel can deliver.
Simplify Password Requirement Displays with Laravel's appliedRules() Method https://laravel-news.com/password-appliedrules
Laravel News
Simplify Password Requirement Displays with Laravel's appliedRules() Method - Laravel News
Laravel's appliedRules() method exposes password validation rules directly to views, enabling dynamic password requirement indicators that automatically stay synchronized with backend validation. This feature eliminates redundancy and improves form usability…
Populate is a Supercharged Seeder for Laravel https://laravel-news.com/populate
Laravel News
Populate is a Supercharged Seeder for Laravel - Laravel News
The Laragear Populate package by is a supercharged, continuable seeder for Laravel applications. This package provides useful features on top of Laravel's database seeding system, including continuing failed seeding attempts.
Build a Smart AI Task Manager with Laravel, Livewire & PrismPHP https://laravel-news.com/smart-ai-task-manager-with-laravel-livewire-prismphp
Laravel News
Build a Smart AI Task Manager with Laravel, Livewire & PrismPHP - Laravel News
Learn how to build an AI-powered task manager using Laravel, Livewire, and PrismPHP. In this video tutorial, I walk through creating a smart to-do app that turns natural language into actionable tasks—no forms, just plain conversation.
URI Path Components Using Laravel's pathSegments() Method https://laravel-news.com/uri-pathsegments
Laravel News
URI Path Components Using Laravel's pathSegments() Method - Laravel News
Laravel's pathSegments() method transforms URI path handling by returning path components as a collection. This feature eliminates manual string splitting, enabling fluent access to path segments for building navigation, breadcrumbs, and routing logic with…
Managing Encrypted Environment Variables In Laravel With Veil https://laravel-news.com/veil-managing-encrypted-environment-variables
Laravel News
Managing Encrypted Environment Variables In Laravel With Veil - Laravel News
Veil is a Laravel package designed to enhance the management of encrypted environment variables in your Laravel or Laravel Zero applications.