bitsnbolts/laravel-collection-macros

A set of useful Laravel collection macros

Downloads

2837

Stars

1

Version

2.5.0

Laravel Collection Macros

Latest Version on Packagist Build Status Quality Score Total Downloads

This repository contains some useful collection macros.

Installation

You can install the package via composer:

composer require bitsnbolts/laravel-collection-macros

Usage

replaceInKeys

Do a find and replace on all the keys of the collection.

$data = new Collection(['foo_bar' => 1]);
$data->replaceInKeys('_', ' '); // Collection(['foo bar' => 1])

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

bitsnbolts

Author

bitsnbolts