Skip to content

Commit

Permalink
1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rawilk committed Jul 15, 2020
1 parent c0150a0 commit 2b64c75
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to `laravel-printing` will be documented in this file.

## 1.1.4 - 2020-07-15

### Fixed
- Return the job id of a new print job with PrintNode [#1](https://github.com/rawilk/laravel-printing/issues/1).

## 1.1.3 - 2020-07-09

### Changed
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ Laravel Printing allows your application to directly send PDF documents or raw t
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.

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

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

Supported Print Drivers:
Expand Down

0 comments on commit 2b64c75

Please sign in to comment.