madeitbelgium/vat
Composer 安装命令:
composer require madeitbelgium/vat
包简介
PHP VAT Library
README 文档
README
Installation
Require this package in your composer.json and update composer.
"madeitbelgium/vat": "^1.6"
Or
composer require madeitbelgium/vat
After updating composer, add the ServiceProvider to the providers array in config/app.php
MadeITBelgium\Vat\ServiceProvider\Vat::class,
You can use the facade for shorter code. Add this to your aliases:
'Vat' => MadeITBelgium\Vat\Facade\Vat::class,
Documentation
Validation
$vatnr = "BE...."; $vat = new Vat($vatnr); if($vat->isVatValid()) { echo "VAT is valid!"; }
laravel validation
$this->validate($request, ['vatnumber' => 'vat']);
When the service is down a ServiceUnavailableException exception is thrown. To allow the validation to succeed when the service is down you can add an option with the default value when to the validation.
$this->validate($request, ['vatnumber' => 'vat:true']);
Format (Not working)
$vatnr = "BE...."; $vat = new Vat($vatnr); echo $vat->vatFormat();
Genearte OGM
$generator = new Vat; echo $generator->generateOGM(1); //Output: 000000000101 echo $generator->generateOGM(1, "111"); //Output: 111000000195 echo $generator->generateOGM(2, "333", true); //Output: 333/0000/00290
Parse data
use MadeITBelgium\Vat\Facade\Vat; $data = Vat::setVat($vatNr)->parse(); dd($data); /* countryCode: "", valid: true, name: "", zipcode: "", city: "", street: "", address: "", */
The complete documentation can be found at: http://www.madeitbelgium.org/my-projects/php-vat-library/
Support
Support github or mail: tjebbe.lievens@madeit.be
Contributing
Please try to follow the psr-2 coding style guide. http://www.php-fig.org/psr/psr-2/
License
This package is licensed under LGPL. You are free to use it in personal and commercial projects. The code can be forked and modified, but the original copyright author should always be included!
统计信息
- 总下载量: 448
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0-or-later
- 更新时间: 2020-03-29