anouar/fpdf

Fpdf allows to generate PDF files
410,240 44
Install
composer require anouar/fpdf
Latest Version:2.0
PHP:>=5.3.0
License:BSD-2-Clause
Last Updated:Feb 17, 2023
Links: GitHub  ·  Packagist
Maintainer: Anouar

If you're going to use this package with L4, make sure you include the laravel 4 version:

"require": {
    "anouar/fpdf": "1.0.1"
}

##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 : If you want to support us:

###Installation Add the following to your composer.json file:

"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;

});

Related Packages

gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444