Laravel wrapper package for Bancard QR API. More information about Bancard QR here
- PHP 8 or later
- Laravel 9, 10 or later
Fire up Composer and require this package in your project.
composer require krugerdavid/laravel-bancard-qr
That's it.
Run the following command to publish config file,
php artisan vendor:publish --provider="KrugerDavid\LaravelBancardQR\BancardQRServiceProvider"
Add the following keys on your .env file
BANCARDQR_PUBLIC_KEY=
BANCARDQR_PRIVATE_KEY=
BANCARDQR_STAGING=
BANCARDQR_COMMERCE_CODE=
BANCARDQR_COMMERCE_BRANCH=
Generate a QR code for a payment.
use KrugerDavid\LaravelBancardQR\BancardQR;
$response = BancardQR::generate_qr(int $amount, string $description, ?array $promotions);
The response object will have the following structure
Parameter | Type | Description |
---|---|---|
status |
String | Indicates if the qr could be generated or not. |
qr_express |
QR object | Element with qr express data. |
supported_clients |
Array | List of clients that support payment with QR. |
QR Object
Parameter | Type | Description |
---|---|---|
amount |
Number | Amount in guaraníes. |
hook_alias |
String | Alias of the payment (from the QR) |
description |
String | Description of the sale entered by the merchant (Optional, the merchant may not enter a description) |
url |
String | URL where the generated QR image is located (in PNG format). This is the image that the store must display in its system. |
created_at |
String | Date time of creation of the QR in format dd/mm/yyyy HH:mm:ss |
qr_data |
String | QR data in EMVCo format. |
Supported Clients List
Parameter | Type | Description |
---|---|---|
name |
String | Client name. |
logo_url |
String | Client logo url |
Revert a QR code after a payment was made
use KrugerDavid\LaravelBancardQR\BancardQR;
// $hook_alias is the QR alias
BancardQR::revert($hook_alias);
The response object will have the following structure
Parameter | Type | Description |
---|---|---|
status |
String | Indicates if the qr could be reversed or not. |
reverse |
QR object | Element with info of the QR reverted |
messages |
Array | In case of status error, list of errors |
The MIT License (MIT). Please see License File for more information