bitsnbolts/laravel-collection-macros

A set of useful Laravel collection macros

2.5.0 2023-07-06 15:12 UTC

This package is auto-updated.

Last update: 2024-05-06 17:02:56 UTC


README

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.