Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 655 Bytes

PREVIOUS.md

File metadata and controls

31 lines (21 loc) · 655 Bytes

Laravel version <= 9

$ composer require laraveldaily/laravel-invoices:^3.3

Laravel version <= 8

$ composer require laraveldaily/laravel-invoices:^2.0

Laravel version <= 7

$ composer require laraveldaily/laravel-invoices:^1.3

If you're using Laravel version < 5.5

If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php

LaravelDaily\Invoices\InvoiceServiceProvider::class,

If you want to use the facade to generate invoices, add this to your facades in config/app.php

'Invoice' => LaravelDaily\Invoices\Facades\Invoice::class