Bunch of Laravel utilities those are not included to the core of the framework
mahmud/laravel-utilities is a Laravel package for bunch of laravel utilities those are not included to the core of the framework.
It currently has 1 GitHub stars and 73 downloads on Packagist (latest version 2.0.0).
Install it with composer require mahmud/laravel-utilities.
Discover more Laravel packages by mahmud
or browse all Laravel packages to compare alternatives.
Last updated
| Laravel | Laravel Utilities | |---------|-------------------| | 5.x | 1.x | | 6.x | 1.x | | 7.x | 2.x |
Via Composer
$ composer require mahmud/laravel-utilities ^2.0.0
use Illuminate\Support\Facades\Validator;
$validator = Validator::make(['foo' => 'বার'], ['foo' => new Ascii()]);
$validator->fails() // true
use Illuminate\Support\Facades\Validator;
$hashedPassword = bcrypt('123456');
$validator = Validator::make(['password' => '123456'], ['password' => 'hash_check:' . $hashedPassword]);
$validator->passes() // true
number functionnumber($number, $decimal = 2)
echo number(7.236) // 7.24
echo number(3.14159, 4) // 3.1416
echo (3.14159, 0) // 3.0
Please see the changelog for more information on what has changed recently.
$ vendor/bin/phpunit
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email author email instead of using the issue tracker.
license. Please see the license file for more information.