bubbaops/macro-collection is a Laravel package for a collection of macros for collections..
It currently has 0 GitHub stars and 0 downloads on Packagist.
Install it with composer require bubbaops/macro-collection.
Discover more Laravel packages by bubbaops
or browse all Laravel packages to compare alternatives.
Last updated
A collection of macros that we regularly use in development, gathered in one convenient spot.
You can install the package via composer:
composer require bubbaops/macro-collection
You can publish and run the migrations with:
php artisan vendor:publish --tag="macro-collection-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="macro-collection-config"
This is the contents of the published config file:
return [
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="macro-collection-views"
$macroCollection = new BubbaOps\MacroCollection();
echo $macroCollection->echoPhrase('Hello, BubbaOps!');
composer test
Please see CHANGELOG for more information on what has changed recently.
The MIT License (MIT). Please see License File for more information.