Skip to content

fulviocanducci/laravel-dompdf-helpers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Dompdf Helpers

Version Downloads PHP Composer License

Installation

First go to the website barryvdh/laravel-dompdf and configure the package before this installation. Then do these procedures:

composer require canducci/laravel-dompdf-helpers

Use Helpers

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

Report View Laravel blade

Example 1

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

Example 2

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

Report File

Example 1

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

Example 2

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

Report HTML

Example 1

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

Example 2

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