PHP code example of itemvirtual / vat-validate

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

    

itemvirtual / vat-validate example snippets


use Itemvirtual\VatValidate\Facades\VatValidate;

VatValidate::checkSpanishVat($vat);

VatValidate::checkNif($vat);
VatValidate::checkNie($vat);
VatValidate::checkSpecialNie($vat);
VatValidate::checkCif($vat);

VatValidate::checkEuropeanVat($vat, $countryCode);

VatValidate::checkVies($vat, $countryCode);

VatValidate::getFullFormatedVat($vat, $countryCode);