Laravel Audit Log https://laravel-news.com/laravel-audit-log
Laravel News
Laravel Audit Log - Laravel News
The Laravel Audit Log package is designed to provide detailed audit logging for Laravel applications. Each model gets a dedicated audit table you can query to see how models have changed over time.
Convert Special Characters to ASCII with Laravel's Str::transliterate Method https://laravel-news.com/str-transliterate
Laravel News
Convert Special Characters to ASCII with Laravel's Str::transliterate Method - Laravel News
Laravel's Str::transliterate method converts special characters to their ASCII equivalents, enabling consistent text normalization. This utility simplifies content processing by handling accented characters, symbols, and unicode text for slug generation,…
Encrypt and Decrypt String Helpers in Laravel 12.18 https://laravel-news.com/laravel-12-18-0
Laravel News
Encrypt and Decrypt String Helpers in Laravel 12.18 - Laravel News
The Laravel team released v12.18.0, with encrypt and decrypt string helpers, per-request truncation limit for HTTP client responses, a new command option to make batchable jobs, and more.
Keep Your Place: Enhancing User Experience with Fragment Method https://laravel-news.com/keep-your-place-enhancing-user-experience-with-fragment-method
Laravel News
Keep Your Place: Enhancing User Experience with Fragment Method - Laravel News
Introducing Lateral's Fragment method—your key to seamless user navigation. By targeting specific sections with anchors, users remain focused on their current content without those annoying page jumps. Perfect for comment sections or product reviews, this…
Repeat Strings Efficiently with Laravel's Str::repeat Method https://laravel-news.com/str-repeat
Laravel News
Repeat Strings Efficiently with Laravel's Str::repeat Method - Laravel News
Laravel's Str::repeat method duplicates strings a specified number of times, enabling simple pattern creation. This utility excels in generating separators, progress indicators, indentation, and visual elements where consistent string repetition is needed…
Better defaults for your Laravel applications with Essentials https://laravel-news.com/laravel-essentials
Laravel News
Better defaults for your Laravel applications with Essentials - Laravel News
Essentials provide better defaults for your Laravel applications including strict models, automatically eagerly loaded relationships, immutable dates, and more!
Extract Arrays from Any Data Type with Laravel's Arr::from Method https://laravel-news.com/arr-from
Laravel News
Extract Arrays from Any Data Type with Laravel's Arr::from Method - Laravel News
Laravel's Arr::from method unifies array extraction from various data types including collections, Jsonable objects, and Arrayable instances. This utility eliminates type checking and provides consistent array conversion regardless of input format, simplifying…
Manage Taxonomies, Categories, and Tags in Laravel https://laravel-news.com/laravel-taxonomy
Laravel News
Manage Taxonomies, Categories, and Tags in Laravel - Laravel News
The Laravel Taxonomy package manages categories, tags, and hierarchical structures in Laravel applications. Taxonomy is ideal for category management, organizing content, product attributes, and more.
Parse Localized Numbers with Laravel's Number Class https://laravel-news.com/number-parse-float
Laravel News
Parse Localized Numbers with Laravel's Number Class - Laravel News
Laravel's Number class provides locale-aware parsing methods that handle international number formats using PHP's Intl extension. These utilities automatically convert locale-specific number strings to standardized numeric values, simplifying financial data…
Filament v4 Beta - Feature Overview https://laravel-news.com/filament-v4-beta-feature-overview
Laravel News
Filament v4 Beta - Feature Overview - Laravel News
The Filament v4 Beta is here with a range of powerful, helpful updates. It's faster, easier to use, and gives you more control when building applications. In this article, we highlight what's new and how these changes can improve your workflow!
Laravel Nightwatch - Deep monitoring & insights, no matter where you deploy. https://laravel-news.com/laravel-nightwatch-released
Laravel News
Laravel Nightwatch - Deep monitoring & insights, no matter where you deploy. - Laravel News
Laravel Nightwatch is first-class monitoring for Laravel applications. Deep monitoring and insights, no matter where you deploy.
Larallow is a Permissions Package With Support for Scopes https://laravel-news.com/larallow-laravel-permissions-package
Laravel News
Larallow is a Permissions Package With Support for Scopes - Laravel News
Larallow for Laravel is a package for handling roles and permissions with advanced features such as scoped roles, polymorphic relations, translation support, and more.
Test Deferred Operations Easily with Laravel's withoutDefer Helper https://laravel-news.com/withoutdefer
Laravel News
Test Deferred Operations Easily with Laravel's withoutDefer Helper - Laravel News
Laravel's withoutDefer and withDefer test helpers enable precise control over deferred operation execution during testing. These utilities allow immediate execution of deferred functions, making it possible to test deferred emails, events, and analytics without…
Laravel 12.9 Adds a useEloquentBuilder Attribute, a FailOnException Queue Middleware, and More https://laravel-news.com/laravel-12-19-0
Laravel News
Laravel 12.9 Adds a useEloquentBuilder Attribute, a FailOnException Queue Middleware, and More - Laravel News
The Laravel team released v12.19.0 with a UseEloquentBuilder PHP attribute, an AsFluent model cast, FailOnException job middleware, assert redirect back with errors, and more.
Handle Nested Arrays Elegantly with Laravel's fluent() Helper https://laravel-news.com/nested-arrays-fluent
Laravel News
Handle Nested Arrays Elegantly with Laravel's fluent() Helper - Laravel News
Laravel's fluent() helper function simplifies multi-dimensional array handling by providing intuitive access to nested data structures. This utility enables dot notation access, collection chaining, and scoped operations, making complex array manipulation…
Manipulate Image URLs in Laravel with the Image Transform Package https://laravel-news.com/laravel-image-transform-url
Laravel News
Manipulate Image URLs in Laravel with the Image Transform Package - Laravel News
The laravel-image-transform-url package offers a lightweight and expressive way to manipulate image URLs by appending transformation query parameters.
Reset Rate Limits Dynamically with Laravel's clear Method https://laravel-news.com/rate-limits-clear
Laravel News
Reset Rate Limits Dynamically with Laravel's clear Method - Laravel News
Laravel's RateLimiter clear method enables dynamic rate limit resets based on application conditions. This utility allows programmatic quota management, making rate limiting systems more flexible by clearing limits when specific events occur, such as approvals…
Lightning Fast Schedule Management for Laravel https://laravel-news.com/lightning-fast-schedule-management-for-laravel
Laravel News
Lightning Fast Schedule Management for Laravel - Laravel News
The Laravel Zap package is a flexible schedule management system with a deep Laravel integration. With Zap, you can create calendar schedules for Eloquent models for things like events, appointments, recurring events, and more.
Dividing Collections with Laravel's splitIn Helper https://laravel-news.com/collections-splitin
Laravel News
Dividing Collections with Laravel's splitIn Helper - Laravel News
Laravel's splitIn method efficiently divides collections into equal groups, perfect for organizing data across multiple columns, teams, or processing units while maintaining balanced distribution throughout your application.