2017 © Pedro Peláez
 

library prodigypdf

Laravel PDF

image

abiodunjames/prodigypdf

Laravel PDF

  • Saturday, December 16, 2017
  • by abiodunjames
  • Repository
  • 1 Watchers
  • 1 Stars
  • 5 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

ProdigyPDF

This package is based on a fork from laravel-dompdf, modified to meet the constraints of a laravel 5.3 project i'm currently working on., (*1)

If you need a pdf package for all laravel versions, please check laravel-dompdf., (*2)

Laravel 5.3

After updating composer, add the ServiceProvider to the providers array in app/config/app.php, (*3)

'Abiodunjames\Prodigypdf\ServiceProvider',

You can optionally use the facade for shorter code. Add this to your facades:, (*4)

'PDF' => 'Abiodunjames\Prodigypdf\Facade',

Mail certificate to user, (*5)

 $pdf=    PDF::loadView('prodigypdf::certificate',[]);
  $email ='example@gmail.com';
  return $pdf->sendTo($email);

Save document to path, (*6)

 $pdf=    PDF::loadView('prodigypdf::certificate',[]);
 $path= $pdf->saveToPath('/document'); //save to /storage/document

You can create a new DOMPDF instance and load a HTML string, file or view name. You can save it to a file, or stream (show in browser) or download., (*7)

$pdf = App::make('prodigypdf');
$pdf->loadHTML('<h1>Test</h1>');
return $pdf->stream();

Or use the facade:, (*8)

$pdf = PDF::loadView('pdf.invoice', $data);
return $pdf->download('invoice.pdf');

You can chain the methods:, (*9)

return PDF::loadFile(public_path().'/myfile.html')->save('/path-to/my_stored_file.pdf')->stream('download.pdf');

You can change the orientation and paper size, and hide or show errors (by default, errors are shown when debug is on), (*10)

PDF::loadHTML($html)->setPaper('a4')->setOrientation('landscape')->setWarnings(false)->save('myfile.pdf')

If you need the output as a string, you can get the rendered PDF with the output() function, so you can save/output it yourself., (*11)

You can copy the config-file (config/dompdf.php) to your local config to change some settings (default paper etc). You can also use your ConfigProvider to set certain keys., (*12)

Tip: UTF-8 support

In your templates, set the UTF-8 Metatag:, (*13)

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

License

The Versions

16/12 2017

0.1

0.1.0.0

Laravel PDF

  Sources   Download

MIT

The Requires

 

by Samuel James

laravel pdf dompdf prodigypdf

16/12 2017

dev-master

9999999-dev

Laravel PDF

  Sources   Download

MIT

The Requires

 

by Samuel James

laravel pdf dompdf prodigypdf