Download the PHP package zanysoft/laravel-pdf without Composer

On this page you can find all versions of the php package zanysoft/laravel-pdf. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?
zanysoft/laravel-pdf
Rate from 1 - 5
Rated 5.00 based on 1 reviews

Informations about the package laravel-pdf

Laravel PDF: PDF generator for Laravel 5.x | 6.x | 7.x

Easily generate PDF documents from HTML right inside of Laravel using this PDF wrapper.

Contents

Installation Guide

Require this package in your composer.json or install it by running:

To start using Laravel, add the Service Provider and the Facade to your config/app.php:

Configuration

The defaults configuration settings are set in config/pdf.php. Copy this file to your own config directory to modify the values. You can publish the config using this command:

php artisan vendor:publish --provider="ZanySoft\LaravelPDF\PdfServiceProvider"

Basic Usage

To use Laravel PDF add something like this to one of your controllers. You can pass data to a view in /resources/views.

or

If you want to generate from html content:

If you want to generate from files:

If you want download pdf file:

If you want to save pdf to server:

If you want add pdf file as attachment to email:

Headers and Footers

If you want to have headers and footers that appear on every page, add them to your <body> tag like this:

Now you just need to define them with the name attribute in your CSS:

Inside of headers and footers {PAGENO} can be used to display the page number.

Included Fonts

By default you can use all the fonts shipped with mPDF.

Custom Fonts

You can use your own fonts in the generated PDFs. The TTF files have to be located in one folder, e.g. /resources/fonts/. Add this to your configuration file (/config/pdf.php):

And then:

Now you can use the font in CSS:

Set Protection

To set protection, you just call the SetProtection() method and pass an array with permissions, an user password and an owner password.

The passwords are optional.

There are a few permissions: 'copy', 'print', 'modify', 'annot-forms', 'fill-forms', 'extract', 'assemble', 'print-highres'.

Find more information to SetProtection() here: https://mpdf.github.io/reference/mpdf-functions/setprotection.html

Documentation

Visit this link for more options and settings: https://mpdf.github.io/


All versions of laravel-pdf with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1 || ^8.0
mpdf/mpdf Version ^8.0.10
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package zanysoft/laravel-pdf contains the following files

Loading the files please wait ....