necenzurat / smartbill
SmartBill API wrapper compatible for Laravel
Installs: 6 510
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 4
Forks: 7
Open Issues: 1
Requires
- php: ^7.2.5|^8.0|^8.1|^8.2
- illuminate/support: ~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
Requires (Dev)
- orchestra/testbench: 3.8.*
- phpunit/phpunit: ^7.0|^8.1
README
Simple SmartBill API integration for Laravel.
Installation
Step 1. Install the package via Composer:
composer require necenzurat/smartbill
Step 2. Publish the config file:
php artisan vendor:publish --provider="Necenzurat\SmartBill\SmartBillServiceProvider" --tag="config"
Step 3. Enter your account details in the config/smartbill.php
file (API username, key, VAT code etc.).
Usage
Click for usage
$invoice = [ 'companyVatCode' => config('smartbill.vatCode'), 'client' => [ 'name' => "Intelligent IT", 'vatCode' => "RO12345678", 'regCom' => "", 'address' => "str. Sperantei, nr. 5", 'isTaxPayer' => false, 'city' => "Sibiu", 'country' => "Romania", 'email' => "office@intelligent.ro", ], 'issueDate' => date('Y-m-d'), 'seriesName' => config('smartbill.invoiceSeries'), 'isDraft' => false, 'dueDate' => date('Y-m-d', time() + 3600 * 24 * 30), 'mentions' => '', 'observations' => '', 'deliveryDate' => date('Y-m-d', time() + 3600 * 24 * 10), 'precision' => 2, 'products' => [ [ 'name' => "Produs 1", 'code' => "ccd1", 'isDiscount' => false, 'measuringUnitName' => "buc", 'currency' => "RON", 'quantity' => 2, 'price' => 10, 'isTaxIncluded' => true, 'taxName' => "Redusa", 'taxPercentage' => 9, 'isService' => false, 'saveToDb' => false, ], ], ]; echo 'Emitere factura simpla: '; try { $smartbill = new SmartBill(); $output = $smartbill->createInvoice($invoice); //see docs for response $invoiceNumber = $output['number']; $invoiceSeries = $output['series']; echo $invoiceSeries . $invoiceNumber; } catch (\Exception $ex) { echo $ex->getMessage(); }
Testing
hell no
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email necenzurat@gmail.com instead of using the issue tracker.
Credits
License
The WTFPL. Please see License File for more information.