All notable changes to salla/zatca
will be documented in this file
- Allow passing mutliple QROptions #10 by @ali-alharthi
The render
function now accept a array of options for render the QR, you can find the all available options at (https://github.com/chillerlan/php-qrcode)
$displayQRCodeAsBase64 = GenerateQrCode::fromArray([
.....
])->render(3);
$displayQRCodeAsBase64 = GenerateQrCode::fromArray([
.....
])->render(['scale' => 3]);
- Support Arabic
- initial release