rawilk / laravel-printing by rawilk

Direct printing for Laravel apps
98,589
392
10
Package Data
Maintainer Username: rawilk
Maintainer Contact: randall@randallwilk.dev (Randall Wilk)
Package Create Date: 2020-06-26
Package Last Update: 2024-04-15
Home Page: https://randallwilk.dev/docs/laravel-printing
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:16:35
Package Statistics
Total Downloads: 98,589
Monthly Downloads: 5,269
Daily Downloads: 229
Total Stars: 392
Total Watchers: 10
Total Forks: 66
Total Open Issues: 5

laravel-printing

Latest Version on Packagist Tests Total Downloads PHP from Packagist License

social image

Laravel Printing allows your application to directly send PDF documents or raw text directly from a remote server to a printer on your local network. Receipts can also be printed by first generating the raw text via the Rawilk\Printing\Receipts\ReceiptPrinter class, and then sending the text as a raw print job via the Printing facade.

$printJob = Printing::newPrintTask()
    ->printer($printerId)
    ->file('path_to_file.pdf')
    ->send();

$printJob->id(); // the id number returned from the print server

Supported Print Drivers:

  • PrintNode: https://printnode.com
  • CUPS: https://cups.org
  • Custom: Configure your own custom driver

Documentation:

For documentation, please visit: https://randallwilk.dev/docs/laravel-printing

Installation

You can install the package via composer:

composer require rawilk/laravel-printing

You can publish the config file with:

php artisan vendor:publish --provider="Rawilk\Printing\PrintingServiceProvider" --tag="config"

The contents of the default configuration file can be found here: https://github.com/rawilk/laravel-printing/blob/master/config/printing.php

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email randall@randallwilk.dev instead of using the issue tracker.

Credits

Inspiration for the PrintNode API wrapper comes from:

License

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