All Projects → ConsoleTVs → Invoices

ConsoleTVs / Invoices

Licence: mit
Generate PDF invoices for your customers in laravel

Projects that are alternatives of or similar to Invoices

Invoice As A Service
💰 Simple invoicing service (REST API): from JSON to PDF
Stars: ✭ 106 (-64.43%)
Mutual labels:  invoice, laravel, pdf
Invoiceninja
Invoices, Expenses and Tasks built with Laravel and Flutter
Stars: ✭ 6,247 (+1996.31%)
Mutual labels:  invoice, laravel
Generators
Laravel File Generators with config and publishable stubs
Stars: ✭ 102 (-65.77%)
Mutual labels:  generate, laravel
Pyreportjasper
Python Reporting with JasperReports
Stars: ✭ 77 (-74.16%)
Mutual labels:  invoice, pdf
Kbframe
一款基于Laravel框架开发的现代化二次开发框架,是高性能,高效率,高质量的企业级开发框架,具有驱动领域,敏捷开发,轻易上手,高内聚低耦合,开箱即用等特点。
Stars: ✭ 47 (-84.23%)
Mutual labels:  generate, laravel
Larafast Fastapi
A Fast Laravel package to help you generate CRUD API Controllers and Resources, Model.. etc
Stars: ✭ 91 (-69.46%)
Mutual labels:  generate, laravel
Invoice It
📃 Generate your orders or your invoices and export them in html, pdf or buffer easily.
Stars: ✭ 69 (-76.85%)
Mutual labels:  invoice, pdf
Laravel Book
Up to date Epub, Mobi and PDF versions from the official Laravel Docs
Stars: ✭ 221 (-25.84%)
Mutual labels:  laravel, pdf
Laravel Invoicable
Easy invoice creation for Laravel
Stars: ✭ 118 (-60.4%)
Mutual labels:  invoice, laravel
Invoiceneko
An Open Sourced Invoice System developed for anyone who needs to generate out an invoice and manage clients
Stars: ✭ 204 (-31.54%)
Mutual labels:  invoice, laravel
Laravel Bootstrap Table List
Bootstrap table list generator for Laravel.
Stars: ✭ 16 (-94.63%)
Mutual labels:  generate, laravel
Shaark
Self-hosted platform to keep and share your content: web links, posts, passwords and pictures.
Stars: ✭ 258 (-13.42%)
Mutual labels:  laravel, pdf
Laravel Menu
Html menu generator for Laravel
Stars: ✭ 650 (+118.12%)
Mutual labels:  generate, laravel
Laravel Table
Generate tables from Eloquent models.
Stars: ✭ 101 (-66.11%)
Mutual labels:  generate, laravel
Fluentreports
📄 Fluent Reports - Data Driven Reporting Engine for Node.js and Browsers 📄
Stars: ✭ 305 (+2.35%)
Mutual labels:  generate, pdf
Url To Pdf Api
Web page PDF/PNG rendering done right. Self-hosted service for rendering receipts, invoices, or any content.
Stars: ✭ 6,544 (+2095.97%)
Mutual labels:  invoice, pdf
Report
Report management package in PHP that aims to help you export information in a variety of formats
Stars: ✭ 125 (-58.05%)
Mutual labels:  laravel, pdf
Tcpdf Laravel
TCPDF helper for laravel
Stars: ✭ 172 (-42.28%)
Mutual labels:  laravel, pdf
Mustangproject
Open Source Java e-Invoicing library, validator and tool (Factur-X/ZUGFeRD, UNCEFACT/CII XRechnung)
Stars: ✭ 98 (-67.11%)
Mutual labels:  invoice, pdf
django-freeze
🧊 convert your dynamic django site to a static one with one line of code.
Stars: ✭ 81 (-72.82%)
Mutual labels:  download, generate

StyleCI Status Build For Laravel Total Downloads Latest Stable Version License

What is Invoices?

Invoices is a Laravel library that generates a PDF invoice for your customers. The PDF can be either downloaded or streamed in the browser. It's highly customizable and you can modify the whole output view as well.

Sample Invoice

This is a sample invoice generated using this library:

Sample Invoice

$invoice = \ConsoleTVs\Invoices\Classes\Invoice::make()
                ->addItem('Test Item', 10.25, 2, 1412)
                ->addItem('Test Item 2', 5, 2, 923)
                ->addItem('Test Item 3', 15.55, 5, 42)
                ->addItem('Test Item 4', 1.25, 1, 923)
                ->addItem('Test Item 5', 3.12, 1, 3142)
                ->addItem('Test Item 6', 6.41, 3, 452)
                ->addItem('Test Item 7', 2.86, 1, 1526)
                ->addItem('Test Item 8', 5, 2, 923, 'https://dummyimage.com/64x64/000/fff')
                ->number(4021)
                ->with_pagination(true)
                ->duplicate_header(true)
                ->due_date(Carbon::now()->addMonths(1))
                ->notes('Lrem ipsum dolor sit amet, consectetur adipiscing elit.')
                ->customer([
                    'name'      => 'Èrik Campobadal Forés',
                    'id'        => '12345678A',
                    'phone'     => '+34 123 456 789',
                    'location'  => 'C / Unknown Street 1st',
                    'zip'       => '08241',
                    'city'      => 'Manresa',
                    'country'   => 'Spain',
                ])
                ->download('demo')
                //or save it somewhere
                ->save('public/myinvoicename.pdf');

Documentation

License

MIT License

Copyright (c) 2017 Erik Campobadal

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Special thanks

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].