├── .editorconfig ├── .github └── workflows │ ├── php-cs-fixer.yml │ └── tests.yml ├── .gitignore ├── .php-cs-fixer.cache ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── composer.json ├── config └── invoicable.php ├── database └── migrations │ └── 2017_06_17_163005_create_invoices_tables.php ├── phpunit.xml ├── resources └── views │ └── receipt.blade.php ├── src ├── InvoicableServiceProvider.php ├── Invoice.php ├── InvoiceLine.php ├── InvoiceReferenceGenerator.php ├── IsInvoicable │ └── IsInvoicableTrait.php └── MoneyFormatter.php └── tests ├── AbstractTestCase.php ├── CreateTestModelsTable.php ├── Feature └── InvoiceTest.php ├── TestModel.php └── Unit ├── InvoiceReferenceTest.php └── MoneyFormatterTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/php-cs-fixer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/.github/workflows/php-cs-fixer.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/.php-cs-fixer.cache -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/composer.json -------------------------------------------------------------------------------- /config/invoicable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/config/invoicable.php -------------------------------------------------------------------------------- /database/migrations/2017_06_17_163005_create_invoices_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/database/migrations/2017_06_17_163005_create_invoices_tables.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/phpunit.xml -------------------------------------------------------------------------------- /resources/views/receipt.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/resources/views/receipt.blade.php -------------------------------------------------------------------------------- /src/InvoicableServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/src/InvoicableServiceProvider.php -------------------------------------------------------------------------------- /src/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/src/Invoice.php -------------------------------------------------------------------------------- /src/InvoiceLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/src/InvoiceLine.php -------------------------------------------------------------------------------- /src/InvoiceReferenceGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/src/InvoiceReferenceGenerator.php -------------------------------------------------------------------------------- /src/IsInvoicable/IsInvoicableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/src/IsInvoicable/IsInvoicableTrait.php -------------------------------------------------------------------------------- /src/MoneyFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/src/MoneyFormatter.php -------------------------------------------------------------------------------- /tests/AbstractTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/tests/AbstractTestCase.php -------------------------------------------------------------------------------- /tests/CreateTestModelsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/tests/CreateTestModelsTable.php -------------------------------------------------------------------------------- /tests/Feature/InvoiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/tests/Feature/InvoiceTest.php -------------------------------------------------------------------------------- /tests/TestModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/tests/TestModel.php -------------------------------------------------------------------------------- /tests/Unit/InvoiceReferenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/tests/Unit/InvoiceReferenceTest.php -------------------------------------------------------------------------------- /tests/Unit/MoneyFormatterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-invoicable/HEAD/tests/Unit/MoneyFormatterTest.php --------------------------------------------------------------------------------