szymsza/laravel-fakturoid is a Laravel package for fakturoid laravel wrapper.
It currently has 0 GitHub stars and 45 downloads on Packagist (latest version v2.1).
Install it with composer require szymsza/laravel-fakturoid.
Discover more Laravel packages by szymsza
or browse all Laravel packages to compare alternatives.
Last updated
Simple wrapper for the official PHP package https://github.com/fakturoid/fakturoid-php supporting the recent version 3
Add the package in your composer.json by executing the command.
composer require szymsza/laravel-fakturoid
This will both update composer.json and install the package into the vendor/ directory.
First initialise the config file by running this command:
php artisan vendor:publish --provider="WEBIZ\LaravelFakturoid\FakturoidServiceProvider" --tag="config"
With this command, initialize the configuration and modify the created file, located under config/fakturoid.php.
return [
'account_name' => env('FAKTUROID_NAME', 'XXX'), // URL slug of your account
'account_api_id' => env('FAKTUROID_API_ID', 'XXX'), // found in your Fakturoid user account settings
'account_api_secret' => env('FAKTUROID_API_SECRET', 'XXX'), // found in your Fakturoid user account settings
'app_contact' => env('FAKTUROID_APP_CONTACT', 'Application <[email protected]>'), // linked to the application you are developing
];
use Fakturoid;
try {
// create subject
$subject = Fakturoid::getSubjectsProvider()->create([
'name' => 'Firma s.r.o.',
'email' => '[email protected]'
]);
if ($subject->getBody()) {
$subject = $subject->getBody();
// create invoice with lines
$lines = [
[
'name' => 'Big sale',
'quantity' => 1,
'unit_price' => 1000
],
];
$invoice = Fakturoid::getInvoicesProvider()->create(['subject_id' => $subject->id, 'lines' => $lines]);
$invoice = $invoice->getBody();
// send created invoice
Fakturoid::getInvoicesProvider()->fireAction($invoice->id, 'deliver');
}
} catch (\Exception $e) {
dd($e->getCode() . ": " . $e->getMessage());
}
use Fakturoid;
try {
// create subject
$subject = Fakturoid::createSubject(array(
'name' => 'Firma s.r.o.',
'email' => '[email protected]'
));
if ($subject->getBody()) {
$subject = $subject->getBody();
// create invoice with lines
$lines = [
[
'name' => 'Big sale',
'quantity' => 1,
'unit_price' => 1000
],
];
$invoice = Fakturoid::createInvoice(array('subject_id' => $subject->id, 'lines' => $lines));
$invoice = $invoice->getBody();
// send created invoice
Fakturoid::fireInvoice($invoice->id, 'deliver');
}
} catch (\Exception $e) {
dd($e->getCode() . ": " . $e->getMessage());
}
If you used the older version of this package communicating with Fakturoid API v2 (pre-March 2024), an update is required before the old API version gets turned off on 31st March 2025.
Standard upgrade guide:
config/fakturoid.php (see Configuration) or delete your config/fakturoid.php and publish the configuration again (see Installation: Step 2)..env:
FAKTUROID_EMAIL and FAKTUROID_API_KEYFAKTUROID_API_ID and FAKTUROID_API_SECRET with credentials found in your Fakturoid user account settingsIf you only used basic Fakturoid functionality, all might work as usual at this point. If not, the issue might be of two types:
Arguments and return types of Fakturoid API v3 calls are not always the same as in v2 - e.g., proforma boolean has been replaced by a document_type attribute when fetching invoices.
To see if you need to provide different arguments of should expect different return values, please consult the official Fakturoid API changelog.
The PHP library this package provides a facade to has changed significantly. Although this wrapper tries to cover up most of these changes to make your code backwards compatible, some less commonly used methods or generally edge cases might case a problem. This can be usually recognized by a BadMethodCallException: Method 'XXX' does not exist on Fakturoid instance. or a similar exception thrown by the wrapper or the PHP library.
To solve this issue, please consult the PHP library documentation to learn how to call your functionality in the new API format (viewing the README diff might come in handy). E.g., to create a subject, instead of calling
Fakturoid::createSubject([...]);
you would now use
Fakturoid::->getSubjectsProvider()->create([...]);
as can be seen in the README diff on line 27, resp. 172.
If you do run into such unhandled comatibility problem, please consider submitting a pull request to the V2Compatibility trait of this package, or at least opening an issue in this repository.
Copyright (c) 2019 - 2020 webiz eu s.r.o MIT Licensed.