Download the PHP package elitexp/laravel-invoices without Composer
On this page you can find all versions of the php package elitexp/laravel-invoices. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download elitexp/laravel-invoices
More information about elitexp/laravel-invoices
Files in elitexp/laravel-invoices
Package laravel-invoices
Short Description Missing invoices for Laravel
License GPL-3.0-only
Homepage https://github.com/elitexp/laravel-invoices
Informations about the package laravel-invoices
Laravel Invoices
This Laravel package provides an easy to use interface to generate Invoice PDF files with your provided data.
Invoice file can be stored, downloaded, streamed on any of the filesystems you have configured. Supports different templates and locales.
Originally package was developed on PHP 7.3.11 and Laravel 6.2, but should work on lower versions too.
Features
- Taxes - fixed or rate - for item or for invoice
- Discounts - fixed or by percentage - for item or for invoice
- Shipping - add shipping price to your invoices
- Automatic calculation - provide minimal set of information, or calculate yourself and provide what to print
- Due date
- Easy to customize currency format
- Serial numbers as you like it
- Templates
- Translations
- Global settings and overrides on-the-fly
Change log
Please see the changelog for more information on what has changed recently.
Installation
Via Composer
After installing Laravel Invoices, publish its assets, views, translations and config using the invoices:install
Artisan command:
Updates
Since it is evolving fast you might want to have latest template after update using Artisan command:
It will give a warning if you really want to override default resources
Or alternatively it can be done separately.
For Laravel version < 5.5
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
If you want to use the facade to generate invoices, add this to your facades in config/app.php
Basic Usage
RandomController.php
See result Invoice_AA_00001.pdf.
Advanced Usage
See result Roosevelt Lloyd Ashley Medina.pdf.
Alternatives using facade
Optionally you can use a facade to make new party or item
Config
Available Methods
Almost every configuration value can be overrided dinamically by methods.
Invoice
General
- addItem(InvoiceItem $item)
- addItems(Iterable)
- name(string)
- seller(PartyContract)
- buyer(PartyContract)
- template(string)
- logo(string) - path to logo
- getLogo() - returns base64 encoded image, used in template to avoid path issues
- filename(string) - overrides automatic filename
- taxRate(float)
- shipping(float) - shipping amount
- totalDiscount(float) - If not provided calculates itself
- totalTaxes(float) - If not provided calculates itself
- totalAmount(float) - If not provided calculates itself
- taxableAmount(float) - If not provided calculates itself
Serial number
- series(string)
- sequence(int)
- delimiter(string)
- sequencePadding(int)
- serialNumberFormat(string)
- getSerialNumber() - returns formatted serial number
Date
- date(Carbon)
- dateFormat(string) - Carbon format of date
- payUntilDays(int) - Days payment due since invoice issued
- getDate() - returns formatted date
- getPayUntilDate() - return formatted due date
Currency
- currencyCode(string) - EUR, USD etc.
- currencyFraction(string) - Cents, Centimes, Pennies etc.
- currencySymbol(string)
- currencyDecimals(int)
- currencyDecimalPoint(string)
- currencyThousandsSeparator(string)
- currencyFormat(string)
- getAmountInWords(float) - Spells out float to words (only english)
- getTotalAmountInWords() - spells out total_amount
- formatCurrency(float) - returns formatted value with currency settings '$ 1,99'
File
- stream() - opens invoice in browser
- download() - offers to download invoice
- save($disk) - saves invoice to storage, use ->filename() for filename
- url() - return url of saved invoice
InvoiceItem
- title(string) - product or service name
- units(string) - measurement units of item (adds units columns if set)
- quantity(float) - amount of units of item
- pricePerUnit(float)
- discount(float) - discount in currency
- discountByPercent(float) - discount by percents discountByPercent(15) means 15%
- tax(float)
- taxByPercent(float)
- subTotalPrice(float) - If not provided calculates itself
Testing
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Author
License
GPL-3.0-only. Please see the license file for more information.
All versions of laravel-invoices with dependencies
barryvdh/laravel-dompdf Version ^0.8.5
illuminate/support Version ^5.5|^6|^7
illuminate/http Version ^5.5|^6|^7