PHP code example of lakshmaji / validators

1. Go to this page and download the library: Download lakshmaji/validators 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/ */

    

lakshmaji / validators example snippets




return [

    /*
    |--------------------------------------------------------------------------
    | Validator namespace
    |--------------------------------------------------------------------------
    |
    | The namespace for the validator classes.
    |
     */
    'validator_namespace' => 'App\Validators',

    /*
    |--------------------------------------------------------------------------
    | Validator path
    |--------------------------------------------------------------------------
    |
    | The path to the validators folder.
    |
     */
    'validator_path' => 'app' . DIRECTORY_SEPARATOR . 'MyValidators' . DIRECTORY_SEPARATOR . 'MyRules',

];


 

namespace App\MyValidators\MyRules;

use Lakshmaji\Validators\Laravel\LaravelValidator;
use Lakshmaji\Validators\Contracts\ValidableInterface;


/**
 * Class CreateVehicleValidator
 * @package App\MyValidators\MyRules
 */
class CreateVehicleValidator extends LaravelValidator implements ValidableInterface
{
    /**
     * @var array
     */
    protected $rules = [
        'name' => '


namespace App\Http\Controllers\Cars;

use App\MyValidators\MyRules\CreateVehicleValidator;


protected $request;
protected $validator;

public function  __construct(Request $request, CreateVehicleValidator $validator) {
  $this->validator = $validator;
  $this->request = $request;
}

public function store() {
  $payload = $this->request->all();

  // validate here
  if($this->validator->with($payload)->passes()) {
    // validation succedded
  } else {
    $errors = $this->validator->formatErrorMessages();
  }
}

bash
  composer dump-autoload
bash
    php artisan vendor:publish
bash
php artisan make:validator CreateVehicle
bash
php artisan list
  
bash
php artisan help make:validator