maspriyono/l5mpdf

There is no license information available for the latest version (v0.0.2) of this package.

mPDF wrapper for Laravel 5

v0.0.2 2016-03-20 03:55 UTC

This package is not auto-updated.

Last update: 2024-04-05 16:45:47 UTC


README

In development.

License

Build Status License

Instalation

Add:

"maspriyono/l5mpdf": "dev-master@dev",

To your composer.json

or Run:

composer require maspriyono/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

............. /****************************/