razvan171514 / pdf-gen
A laravel package for pdf generation.
Requires
- dompdf/dompdf: ^0.8.5
- erusev/parsedown: ^1.7
- mpdf/mpdf: ^8.0
Requires (Dev)
- orchestra/testbench: ^5.1
- setasign/fpdf: ^1.8
This package is auto-updated.
Last update: 2025-03-29 00:48:21 UTC
README
A laravel package for pdf generation
Require this package in your composer.json and update composer. This will download the package and the folowing libraries also:
- mpdf/mpdf
- erusev/parsedown
- dompdf/dompdf
$ composer require razvan171514/pdf-gen
Installation
Laravel 7.x
In the config/app.php
file an alias can be added for ease of use when importing the facade.
... 'aliases' => [ ... 'Pdf' => razvan\PdfGen\Pdf::class, ... ], ...
Publishing configuration
The defaults configuration settings are set in config/pdf.php
. Copy this file to your own config directory to modify the values. You can publish the config using this command:
$ php artisan vendor:publish --provider="razvan\PdfGen\PdfServiceProvider"
The configuration file contains the options for the setting of this package such as driver configuration and configuration for specific drivers (ex. dompdf).
return [ /** mpdf , dompdf*/ 'driver' => 'dompdf', 'dompdf_config' => [ 'page' => 'A4', /** landscape, portrait */ 'orientation' => 'portrait', ], /** path to template directoy */ 'templates_path' => __DIR__ . '/../resources/views/', /** path to output directory */ 'output_path' => __DIR__ . '/../resources/views/pdfs/', ];
Here is allso configured the path to the templates directory and the path where the generated pdfs will be stored. Insted of the default hardcoded path the base_path helper can be used
... 'templates_path' => base_path('resources/views'), 'output_path' => base_path('resources/views/pdfs'), ...
Note: The output folder has to exist otherwose an exception will be thrown
Usage
The havy lifting of the entire package is done by the razvan\PdfGen\Pdf::class
witch is resolving the configuration in the config/pdf.php
file and returns the desired pdf file.
Pdf::generate('file_name.html', [ 'name' => 'oputput_file_name.pdf', 'mode' => 'F', ]);
The razvan\PdfGen\Pdf::generate()
method accepts tow arguments:
- The template file (the supported types are html, markdown, view).
- An array with tow elements: name and mode. The name key holds the output file name and the mode key holds the action that will be performed.
Note: The second argument is optional and if it's not present the name key will default to
file.pdf
and the mode key toF
Modes:
F
for saving the pdf file in the project folder at the specified path in the configuration.D
for downloading the pdf file.
Note: For the dompdf driver only the
D
mode is not available
Examples:
... use razvan\PdfGen\Pdf; ... // html template Pdf::generate('file_name.html', ['name' => 'some_other_name.pdf']); // markdown template Pdf::generate('file_name.md', ['mode' => 'D']); // view Pdf::generate(view('blade_view')); // view with data Pdf::generate(view('blade_view', compact('data')), [ 'name' => 'cool_name.pdf', 'mode' => 'D', ]);
Note: The import statement can be changed with only
use Pdf;
if the alias is added toconfig/app.php
file
Note: The second argument accepted by the generate method can be passed with only one of the two keys (the other one will defaulted with it's default value)