vatttan/apdf

Make export as a pdf in Laravel with supporting for utf charcters like farsi letters

Maintainers

Package info

github.com/vatttanweb/APdf

Issues

pkg:composer/vatttan/apdf

Statistics

Installs: 779

Dependents: 0

Suggesters: 0

Stars: 11

dev-main 2021-05-26 10:45 UTC

This package is not auto-updated.

Last update: 2026-03-27 05:02:12 UTC


README

Laravel Package for export page as PDF with support of UTF-8 like farsi character.

This package develope and simplify TCPDF(php pure library) for Laravel.

Usage:

1.Run this comman:

composer require vatttan/apdf

Now its available in every where you want like Views,Controllers,.... For example, in view you can use:

use Illuminate\Support\Facades\Route;
use Vatttan\Apdf\Apdf;
Route::get('/', function () {
   $apdf = new Apdf();
   $apdf->print('<p style="text-align: right">وطن ، یک شکوه پابرجا...</p>');
});