PHP code example of canducci / laravel-dompdf-helpers

1. Go to this page and download the library: Download canducci/laravel-dompdf-helpers library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

canducci / laravel-dompdf-helpers example snippets


$instance = printer();
$instance->loadView($view, $data);
$instance->download(); // or $instance->stream();

$instance = printer_view($view, $data);
$instance->stream(); // or $instance->download();

return printer_view_stream($view, $data); // or printer_view_download($view, $data);

$instance = printer_file($path);
$instance->stream(); // or $instance->download();

return printer_file_stream($path); // or printer_file_download($path);

$instance = printer_html($path);
$instance->stream(); // or $instance->download();

return printer_html_stream($path); // or printer_html_download($path);