servit / l5mpdf
mPDF wrapper for Laravel 5
Installs: 2 433
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 3
Forks: 10
Open Issues: 2
Requires
- php: >=5.4.0
- illuminate/support: 5.x
- mpdf/mpdf: dev-master@dev
This package is auto-updated.
Last update: 2024-11-08 08:01:35 UTC
README
In development.
License
Instalation
Add:
"servit/l5mpdf": "dev-master@dev",
To your composer.json
or Run:
composer require servit/l5mpdf
Then add:
'Servit\Mpdf\ServiceProvider',
To the providers
array on your config/app.php
And
'PDF' => 'Servit\Mpdf\Facades\Pdf',
To the aliases
array on yout config/app.php
in order to enable the PDF facade
Usage
$router->get('/pdf/view', function() { // Config::set('mpdfconfig.pdf.options',['th','A5','','',10,10,10,10,10,5,'L'] ); // Config::set('mpdfconfig.pdf.options','"th","A0","","",10,10,10,10,6,3'); // $mpdfcfg = Config::get('mpdfconfig'); // dump($mpdfcfg); // consolelog('mpdfcfg1',$mpdfcfg); $pdf = \App::make('mpdf.wrapper',['th','A0','','',10,10,10,10,10,5,'L']); // $pdf = \App::make('mpdf.wrapper'); $pdf->WriteHTML('<h1>test</h1>'); $pdf->AddPage('P'); $pdf->WriteHTML('<h1>test2</h1>'); $pdf->stream(); });
Force download
$router->get('/pdf/download', function() { $html = view('pdfs.example')->render(); return PDF::load($html)->download(); });
Output to a file
$router->get('/pdf/output', function() { $html = view('pdfs.example')->render(); PDF::load($html) ->filename('/tmp/example1.pdf') ->output(); return 'PDF saved'; });
This mPDF Wrapper for Laravel5 is open-sourced software licensed under the MIT license 1
............. /****************************/