Search by

jengo / pdf

gilads-otiannoh254

A modern, multi-driver PDF generation and document reporting package for CodeIgniter 4 and the Jengo ecosystem.

dev-main 2026-09-08 12:06 UTC

This package is auto-updated.

Last update: 2026-09-08 12:06:16 UTC


README

A high-performance, dual-driver PDF generation, document templating, database schema reporting, and interactive browser preview engine for CodeIgniter 4 and the Jengo Framework.

Documentation: https://lipex-org.github.io/jengophp.com/packages/pdf

Installation

composer require jengo/pdf
php spark jengo:install pdf

Quick Start

use Jengo\Pdf\Pdf;

// 1. Fluent commercial invoice
return Pdf::invoice('INV-2026-001')
    ->client(['name' => 'Acme Corp', 'email' => 'billing@acme.com'])
    ->addItem('Cloud Architecture Consulting', 1, 3500.00)
    ->tax(16.0)
    ->download('invoice-001.pdf');

// 2. Interactive in-browser preview canvas
return Pdf::invoice('INV-2026-001')->preview();

// 3. Render raw HTML or CI4 view
return Pdf::view('invoices/receipt', $data)->inline();

Documentation

For full guides on Dompdf vs Chromium drivers, 7 pre-built document builders, schema data reports, interactive preview canvas, vector QR/barcodes, and testing doubles, visit https://lipex-org.github.io/jengophp.com/packages/pdf.

License

Released under the MIT License.