validation-extend maintained by x-laravel
Description
Adds rules that may be required that are not in the Laravel validation class.
Author
Last update
2021/02/06 21:41
(1.x-dev)
License
Downloads
409
X-Laravel - Validation Extend Package
Introduction
Adds rules that may be required that are not in the Laravel validation class.
Requirements
Laravel >=5.5. Other than that, this library has no requirements.
Install
$ composer require x-laravel/validation-extend
Example Usage
use Illuminate\Support\Facades\Validator;
$validator = Validator::make($request->all(), [
'staff_name' => 'required|human_name',
]);
License
This package is open source software licensed under the MIT license.