LaravelPackages.net
Acme Inc.
Toggle sidebar
alhoqbani/laravel-pdf

Laravel wrapper for mPDF 7.0

16
1
0.0.1
About alhoqbani/laravel-pdf

alhoqbani/laravel-pdf is a Laravel package for laravel wrapper for mpdf 7.0. It currently has 1 GitHub stars and 16 downloads on Packagist (latest version 0.0.1). Install it with composer require alhoqbani/laravel-pdf. Discover more Laravel packages by alhoqbani or browse all Laravel packages to compare alternatives.

Last updated

Laravel wrapper for mPDF 7.0

Latest Version on Packagist Build Status SensioLabsInsight Quality Score Total Downloads

Laravel wrapper for mPDF 7.0

UNDER DEVELOPMENT. Do NOT use for production

Installation

You can install the package via composer:

composer require 'alhoqbani/laravel-pdf:@dev'

Usage

Start by publishing the config file:

php artisan vendor:publish --provider "Alhoqbani\PDF\PDFServiceProvider"

Edit the config file. You can add any extra configuration to be passed to the Mpdf constructor.

To us the Mpdf library directly, you can get a pre-configured instance of Mpdf

<?php

        $mpdf = \PDF::getMpdf();

        $mpdf->writeHTML('<h1>Hello World</h1>');

        return $mpdf->output();

// TODO

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

Built using Spatie.be skeleton

License

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

Star History Chart