kaankilic / fpdfinvoice
Fpdf allows to generate PDF files
1.0.2
2015-03-30 12:59 UTC
Requires
- php: >=5.3.0
- illuminate/support: ~5.0
This package is auto-updated.
Last update: 2024-11-13 00:12:34 UTC
README
If you're going to use this package with L4 , make sure to include the laravel 4 version:
"require": { "anouar/fpdf": "1.0.1" }
##laravel-Fpdf
Fpdf allows to 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 : If you want to support us:
###Installation
To your composer.json
file, add:
"require-dev": { "anouar/fpdf": "1.0.2" }
Next, run composer install
to download it.
Add the service provider to app/config/app.php
, within the providers
array.
'providers' => array( // ... 'Anouar\Fpdf\FpdfServiceProvider', )
Finally, add the alias to app/config/app.php
, within the aliases
array.
'aliases' => array( // ... 'Fpdf' => 'Anouar\Fpdf\Facades\Fpdf', )
##Example Code
Route::get('pdf', function(){ $fpdf = new Fpdf(); $fpdf->AddPage(); $fpdf->SetFont('Arial','B',16); $fpdf->Cell(40,10,'Hello World!'); $fpdf->Output(); exit; });
##OR
Route::get('pdf', function(){
Fpdf::AddPage();
Fpdf::SetFont('Arial','B',16);
Fpdf::Cell(40,10,'Hello World!');
Fpdf::Output();
exit;
});