PHP code example of wilsenhc / laravel-rif-validation

1. Go to this page and download the library: Download wilsenhc/laravel-rif-validation 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/ */

    

wilsenhc / laravel-rif-validation example snippets


// in a `FormRequest`
public function rules()
{
    return [
        'rif' => '

// in a `FormRequest`

use Wilsenhc\RifValidation\Rules\Rif;

public function rules()
{
    return [
        'rif' => ['
bash
php artisan vendor:publish --provider="Wilsenhc\RifValidation\RifValidationServiceProvider"