2017 © Pedro Peláez
 

library fpdf

Fpdf allows to generate PDF files - Fork of Anouar/FPDF

image

dlimars/fpdf

Fpdf allows to generate PDF files - Fork of Anouar/FPDF

  • Tuesday, May 20, 2014
  • by dlimars
  • Repository
  • 1 Watchers
  • 0 Stars
  • 19 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 39 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

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, (*1)

Donation :

If you want to support us: Click here to lend your support to: github and make a donation at pledgie.com !, (*2)

Installation

To your composer.json file, add:, (*3)

"require-dev": {
    "dlimars/fpdf": "v1.0.0"
}

Next, run composer install to download it., (*4)

Add the service provider to app/config/app.php, within the providers array., (*5)

'providers' => array(
    // ...

    'Anouar\Fpdf\FpdfServiceProvider',
)

Finally, add the alias to app/config/app.php, within the aliases array., (*6)

'aliases' => array(
    // ...

    'Fpdf'    => 'Anouar\Fpdf\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;

});

The Versions

20/05 2014

dev-master

9999999-dev

Fpdf allows to generate PDF files - Fork of Anouar/FPDF

  Sources   Download

BSD-2-Clause

The Requires

 

by Avatar Anouar

20/05 2014

v1.0.0

1.0.0.0

Fpdf allows to generate PDF files - Fork of Anouar/FPDF

  Sources   Download

BSD-2-Clause

The Requires

 

by Avatar Anouar