Looking to hire Laravel developers? Try LaraJobs

laravel-pdf-manager maintained by joaovdiasb

Description
Laravel pdf manager package
Last update
2026/02/08 02:26 (dev-master)
License
Links
Downloads
2 037

Comments
comments powered by Disqus

Laravel PDF manager

Software License Total Downloads

Installation

Install via composer

composer require joaovdiasb/laravel-pdf-manager

Configuration

You can optionally change the default values used by publishing the vendor

php artisan vendor:publish --provider="Joaovdiasb\LaravelPdfManager\LaravelPdfManagerServiceProvider"

Usage

(new PdfManager)->setHeader(view('pdf.header')) 
                ->setFooter('DOCUMENT FOOTER')
                ->setBody(str_repeat('<u>[NAME]</u><br />', 100))
                ->setData(['[NAME]' => 'Jhon Doe'])
                ->setPageCounter()
                ->save('documents');

Output PDF LINK HERE

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security-related issues, please email j.v_dias@hotmail.com instead of using the issue tracker.

License

The MIT License (MIT). Please see License File for more information.