PHP code example of frbit / validator-loader-laravel
1. Go to this page and download the library: Download frbit/validator-loader-laravel library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
php
// get the input for validation
$input = Input::all();
// this returns just the same as Laravel's \Validator::make($input, $rules) would
$validator = \ValidatorLoader::get("my-form", $input);
if ($validator->fails()) {
# ..
)
php
// get the input for validation
$input = Input::all();
// this returns just the same as Laravel's \Validator::make($input, $rules) would
$loader = \App::make("validator-loader");
$validator = $loader->get("my-form", $input);
if ($validator->fails()) {
# ..
)
php
return array(
// time in minutes -> set to 0 to disable caching
'cache' => 123,
// key name under which cache is stored
'cache-key' => 'some-key-name',
);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.