Download the PHP package kaankilic/fpdfinvoice without Composer
On this page you can find all versions of the php package kaankilic/fpdfinvoice. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download kaankilic/fpdfinvoice
More information about kaankilic/fpdfinvoice
Files in kaankilic/fpdfinvoice
Download kaankilic/fpdfinvoice
More information about kaankilic/fpdfinvoice
Files in kaankilic/fpdfinvoice
Vendor kaankilic
Package fpdfinvoice
Short Description Fpdf allows to generate PDF files
License BSD-2-Clause
Package fpdfinvoice
Short Description Fpdf allows to generate PDF files
License BSD-2-Clause
Please rate this library. Is it a good library?
Informations about the package fpdfinvoice
If you're going to use this package with L4, make sure you include the laravel 4 version:
laravel-Fpdf
Fpdf lets you generate PDF files. This package is the laravel package version of http://www.fpdf.org , for more information check this link http://www.fpdf.org/?lang=en
Donation :
Installation
Add the following to your composer.json
file:
Next, run composer install
to download it.
Add the service provider to app/config/app.php
, within the providers
array.
Finally, add the alias to app/config/app.php
, within the aliases
array.
Example Code
OR
Route::get('pdf', function(){
Fpdf::AddPage();
Fpdf::SetFont('Arial','B',16);
Fpdf::Cell(40,10,'Hello World!');
Fpdf::Output();
exit;
});
All versions of fpdfinvoice with dependencies
PHP Build Version
Package Version
The package kaankilic/fpdfinvoice contains the following files
Loading the files please wait ....