Skip to content

Commit 2b64c75

Browse files
committed
1.1.4
1 parent c0150a0 commit 2b64c75

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

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

5+
## 1.1.4 - 2020-07-15
6+
7+
### Fixed
8+
- Return the job id of a new print job with PrintNode [#1](https://github.com/rawilk/laravel-printing/issues/1).
9+
510
## 1.1.3 - 2020-07-09
611

712
### Changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ Laravel Printing allows your application to directly send PDF documents or raw t
99
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.
1010

1111
```php
12-
Printing::newPrintTask()
12+
$printJob = Printing::newPrintTask()
1313
->printer($printerId)
1414
->file('path_to_file.pdf')
1515
->send();
16+
17+
$printJob->id(); // the id number returned from the print server
1618
```
1719

1820
Supported Print Drivers:

0 commit comments

Comments
 (0)