LaravelPackages.net
Acme Inc.
Toggle sidebar
sargilla/tcpdf

TCPDF en Laravel

286
0
v1.2
About sargilla/tcpdf

sargilla/tcpdf is a Laravel package for tcpdf en laravel. It currently has 0 GitHub stars and 286 downloads on Packagist (latest version v1.2). Install it with composer require sargilla/tcpdf. Discover more Laravel packages by sargilla or browse all Laravel packages to compare alternatives.

Last updated

TCPDF

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

Comments