PHP code example of ambersive / vatvalidator
1. Go to this page and download the library: Download ambersive/vatvalidator 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/ */
ambersive / vatvalidator example snippets
use VatValidator;
$result = VatValidator::check("ATU69434329");
$result->isValid(); // Returns a boolean value
$result->getName(); // Returns the company name
$result->getAddress(); // Returns the company address
$result->getCountry(); // Returns the Country code
$result->getNumber(); // Returns the TAX number.
$validator = Validator::make(['vatid' => 'ATU69434328'], [
'vatid' => 'vat_eu'
]);
bash
php artisan vendor:publish --tag=vat-validator