Download the PHP package seguce92/laravel-dompdf without Composer
On this page you can find all versions of the php package seguce92/laravel-dompdf. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-dompdf
DOMPDF Wrapper for Laravel 5.*
Installation
Laravel 5.x:
You can install the package for your Laravel 5 project through Composer.
Register the service provider array in app/config/app.php
.
Seguce92\DomPDF\ServiceProvider::class,
You can optionally use the facade for shorter code. Add this to your facades:
'PDF' => Seguce92\DomPDF\Facade::class,
Lumen:
After updating composer add the following lines to register provider in bootstrap/app.php
To change the configuration, copy the config file to your config folder and enable it in bootstrap/app.php
:
Using
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.
$pdf = App::make('dompdf.wrapper');
$pdf->loadHTML('<h1>Test</h1>');
return $pdf->stream();
Or use the facade:
$pdf = PDF::loadView('pdf.invoice', $data);
return $pdf->download('invoice.pdf');
You can chain the methods:
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)
PDF::loadHTML($html)->setPaper('a4')->setOrientation('landscape')->setWarnings(false)->save('myfile.pdf')
You can add watermarks of type image and text
NOTE: enable "DOMPDF_ENABLE_FONTSUBSETTING" => true, in app/config/dompdf.php
for correct operation of setWatermarkText [size change]
Methods property
-
setWatermarkImage
php $pdf->setWatermarkText($text, $size = '100px', $opacity = 0.6, $rotate = '10deg', $top = '30%')
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.
Use php artisan vendor:publish
to create a config file located at config/dompdf.php
which will allow you to define local configurations to change some settings (default paper etc).
You can also use your ConfigProvider to set certain keys.
Tip: UTF-8 support
In your templates, set the UTF-8 Metatag:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
Tip: Page breaks
You can use the CSS page-break-before
/page-break-after
properties to create a new page.
<style>
.page-break {
page-break-after: always;
}
</style>
<h1>Page 1</h1>
<div class="page-break"></div>
<h1>Page 2</h1>
Original Package
This DOMPDF Wrapper for Laravel is open-sourced software licensed under the barryvdh/laravel-dompdf Repository