mphpmaster/laravel-zatca

Laravel helper to generate the QRcode for ZATCA E-Invoicing system

1.0.2 2023-01-09 14:25 UTC

This package is auto-updated.

Last update: 2024-04-04 07:51:15 UTC


README

Unofficial package to implement ZATCA QRcode for E-Invoicing.

Requirements

  • PHP >= 7.4
  • An mbstring extension

Dependencies

Installation

Via composer:

$ composer require mphpmaster/laravel-zatca

Usage

Generate Base64

$value = \MPhpMaster\ZATCA\TagBag::make()
    ->setCompany('Company name')
    ->setVatId('311111111111113')
    ->setInvoiceDate('2023-11-24T03:48:00Z')
    ->setInvoiceTotalAmount('100')
    ->setVatAmount('15')
    ->toBase64();

// > Output
// AQxDb21wYW55IG5hbWUCDzMxMTExMTExMTExMTExMwMUMjAyMy0xMS0yNFQwMzo0ODowMFoEAzEwMAUCMTU=

Generate Plain

$value = \MPhpMaster\ZATCA\TagBag::make()
    ->setCompany('Company name')
    ->setVatId('311111111111113')
    ->setInvoiceDate('2023-11-24T03:48:00Z')
    ->setInvoiceTotalAmount('100')
    ->setVatAmount('15')
    ->toTLV();

Get The QRCode Image

$value = \MPhpMaster\ZATCA\TagBag::make()
    ->setCompany('Company name')
    ->setVatId('311111111111113')
    ->setInvoiceDate('2023-11-24T03:48:00Z')
    ->setInvoiceTotalAmount('100')
    ->setVatAmount('15')
    ->toImage();

// <img src="$value" alt="ZATCA QRCode" />

Testing

vendor/bin/phpunit

Copyright and license

Copyright © 2023 hlaCk (https://github.com/mPhpMaster)

Licensed under the MIT License (https://github.com/mPhpMaster/laravel-zatca/blob/master/LICENSE) license.

Stand with Palestine 🇵🇸 #FreePalestine