https://github.com/myerscode/avail
A helper package for Laravel 5
https://github.com/myerscode/avail
Last synced: 11 months ago
JSON representation
A helper package for Laravel 5
- Host: GitHub
- URL: https://github.com/myerscode/avail
- Owner: myerscode
- License: mit
- Created: 2017-11-30T21:44:45.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-01T22:22:15.000Z (almost 7 years ago)
- Last Synced: 2025-01-29T17:44:26.859Z (about 1 year ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Avail
a helper package for Laravel 5
## Install
You can install this package via composer:
``` bash
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.
```php
$text = text('hello world');
```
See [utilities-strings](https://github.com/myerscode/utilities-strings) for available methods.
```php
$number = number(69);
```
See [utilities-numbers](https://github.com/myerscode/utilities-numbers) for available methods.
```php
$bag = bag(['Hello', 'World']);
```
See [utilities-bags](https://github.com/myerscode/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.