Download the PHP package alsaloul/microtec without Composer
On this page you can find all versions of the php package alsaloul/microtec. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download alsaloul/microtec
More information about alsaloul/microtec
Files in alsaloul/microtec
Download alsaloul/microtec
More information about alsaloul/microtec
Files in alsaloul/microtec
Vendor alsaloul
Package microtec
Short Description A Laravel package for integrating with the Microtec ERP system.
License
Package microtec
Short Description A Laravel package for integrating with the Microtec ERP system.
License
Please rate this library. Is it a good library?
Informations about the package microtec
Microtec Laravel Integration Package
This package integrates with the Microtec ERP system for sending invoices.
Installation
-
Install via composer:
-
Publish the configuration file:
- Set up your
.env
file with the following:
Usage
use Alsaloul\Microtec\OrderData;
use Alsaloul\Microtec\Microtec;
$products = [
[
'id' => 122,
'name' => 'product name',
'itemPrice' => 100,
'qty' => 1,
'totalPrice' => 100,
]
];
$orderData = new OrderData(
1212,
'2024-08-20T12:12:01.310Z',
'Mohammed Alsaloul',
'+967775511357',
10,
15,
125,
$products
);
$microtec = Microtec::sendOrder($orderData);
return $microtec;
All versions of microtec with dependencies
PHP Build Version
Package Version
The package alsaloul/microtec contains the following files
Loading the files please wait ....