mr4-lc / vietqr
Laravel VietQR payment (un-official)
0.0.1
2024-06-27 03:39 UTC
Requires
- php: >=7.0.0|>=8.0.0
- dsiddharth2/php-zxing: >=1.0.0
- simplesoftwareio/simple-qrcode: >=4.0.0
- symfony/console: ^6.0.2
Requires (Dev)
- phpunit/phpunit: >=6.0
README
This is a laravel
component that integrates [VietQR payment].
- Get consumer account information from QR Code standard.
- Create QR Code.
Note:
- This component don't using VietQR API, this component create QR CODE with EMVco.
- Data tested with TPBank.
Screenshot
Installation
composer require mr4-lc/vietqr php artisan vendor:publish --tag=mr4-lc-vietqr --force php artisan migrate php artisan vietqr:seed
Configuration
return [ 'logo' => 'logo.png', 'defaut' => [ 'transaction_currency' => '704', 'country_code' => 'VN', ], ];
Database
Table vietqr_informations Table vietqr_banks
Usage
<x-mr4-lc.consumer_account_information />
<x-mr4-lc.consumer_account_information id="tpb" /> <input type="text" class="form-control" id="tpb_account">
<x-mr4-lc.consumer_account_information id="tpb2" /> <input type="text" class="form-control" id="tpb2_account"> <img id="tpb2_bank-logo_img" width="128">
<x-mr4-lc.viet-qr /> <x-mr4-lc.viet-qr id="mr4"/>
API:
Request: { "account_id": 1, "transaction_amount": 180000, "message": "Xin chào", "transaction_id": "HD0123456", } API: {{host}}api/vietqr Response: { "code": "00020101021238550010A000000727012500069704230111012345678900208QRIBFTTA530370454061800005802VN62260109HD01234560809Xin chào6304A240" "qr": "data:image/png;base64" } API: {{host}}api/vietqr_encode Response: { "code": "00020101021238550010A000000727012500069704230111012345678900208QRIBFTTA530370454061800005802VN62260109HD01234560809Xin chào6304A240" }
Request: { "data": "00020101021238550010A000000727012500069704230111012345678910208QRIBFTTA530370454061800005802VN62260109HD01234560809Xin chào630496FB" } API: {{host}}api/vietqr_detech Request: { "image": "FILE IMAGE" } API: {{host}}api/vietqr_decode Response: { "data": { "account": "01234567891", "bank": { "id": 10, "code": "TPB", "bin": "970423", "name": "Ngân hàng TMCP Tiên Phong", "shortName": "TPBank", "logo": "https://api.vietqr.io/img/TPB.png", "transferSupported": 1, "lookupSupported": 1, "support": 3, "isTransfer": 1, "swift_code": "TPBVVNVX", "status": 1, "created_at": "2023-11-30T03:55:56.000000Z", "updated_at": "2023-11-30T03:55:56.000000Z" }, "serviceCode": { "id": 1, "name": "account", "value": "QRIBFTTA", "status": 1, "created_at": null, "updated_at": null }, "message": "Xin chào", "transaction_amount": 180000, "transaction_id": "HD0123456", "transaction_currency": "704", "country_code": "VN", "point_of_initiation_method": "12" } }
License
Licensed under The MIT License (MIT).