myerscode / avail
A collection of global helper functions and facades for Laravel.
1.1.0
2019-05-01 22:21 UTC
Requires
- php: >=7.0
- myerscode/utilities-bags: ~1.0.0
- myerscode/utilities-numbers: ~1.0.0
- myerscode/utilities-strings: ^1.0.0
- myerscode/utilities-web: ^1.0.0
Requires (Dev)
- phpunit/phpunit: ~7.5
This package is auto-updated.
Last update: 2024-10-29 04:42:12 UTC
README
a helper package for Laravel 5
Install
You can install this package via composer:
composer require myerscode/avail
Usage
Access a collection of helper methods for various types, which can be chained of tasks and property types, first pass a value you want to use to the utility objects.
$text = text('hello world');
See utilities-strings for available methods.
$number = number(69);
See utilities-numbers for available methods.
$bag = bag(['Hello', 'World']);
See utilities-bags for available methods.
Contributing
We are very happy to receive pull requests to add functionality to the helper classes. Please submit them to our specific utility library.