sargilla / tcpdf
TCPDF en Laravel
Installs: 265
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sargilla/tcpdf
Requires
- php: >=5.3.0
- tecnickcom/tcpdf: ^6.2
This package is auto-updated.
Last update: 2025-10-11 22:45:35 UTC
README
Installation
To install run a console command:
composer require sargilla/tcpdf
Use
use PDF; // at the top of the file
PDF::SetTitle('Hello World');
PDF::AddPage();
PDF::Write(0, 'Hello World');
PDF::Output('hello_world.pdf');
For a list of all available function take a look at the TCPDF Documentation
Config
php artisan vendor:publish