anovanmaximuz/laravel-validation is a Laravel package for validasi request for laravel.
It currently has 0 GitHub stars and 34 downloads on Packagist (latest version v1.0.3).
Install it with composer require anovanmaximuz/laravel-validation.
Discover more Laravel packages by anovanmaximuz
or browse all Laravel packages to compare alternatives.
Last updated
Laravel Validation was created by, and is maintained by Ano Van, and is a package designed to support validation request on Laravel.
Requires PHP 7.3+
Require Laravel Validation using Composer:
composer require anovanmaximuz/laravel-validation
As an example, here is how to require Laravel Validation on Laravel 8.x:
use Anovanmaximuz\LaravelValidation as Validation;
...
$paramsChecks = new Validation\request($request, [
'partnerServiceId' => 'required|max:9|string',
'customerNo'=>'required|string|max:20',
'virtualAccountNo'=>'required|string|max:28',
'trxDateInit'=>'required|date|max:25',
'channelCode'=>'required|int|max:4',
'inquiryRequestId'=>'required|string|max:128'
],'parameter', true);