konsulting/laravel-extend-collections
A few extensions to the Laravel Collection and Arr.
6,900
2
| Install | |
|---|---|
composer require konsulting/laravel-extend-collections |
|
| Latest Version: | 0.3.1 |
| PHP: | ^8.2 |
| License: | MIT |
| Last Updated: | Feb 17, 2026 |
| Links: | GitHub · Packagist |
Maintainer: konsulting
Laravel Extend Collections
A few extensions to the Laravel Collection and Arr.
Installation
composer require konsulting/laravel-extend-collections
Using Laravel
This package will auto-register the service provider.
Not using Laravel
There is a simple namespaced helper function to assist with extending Collection and Arr.
// Inside your application code, run:
\Konsulting\Laravel\load_collection_extensions();
Arr Extensions
fromDot- convert an array where the keys are dot-notation indexed to a nested array
Collection extensions
dropEmpty- drop items whose values areempty()deep- apply a function recursively through a collection, and through arrays/collections within itdotGet- retrieve an item using dot-notationdotSet- set an item using dot-notationdotHas- check if an item exists using dot-notationdot- now standard in Laravel asdot.fromDot- a little different toundotin Laravel.
Contributing
Contributions are welcome and will be fully credited. We will accept contributions by Pull Request.
Please:
- Use the PSR-2 Coding Standard
- Add tests, if you’re not sure how, please ask.
- Document changes in behaviour, including readme.md.
Testing
We use PHPUnit
Run tests using PHPUnit: vendor/bin/phpunit