laravel-printing
Advanced Usage
Raw Content Printing
On this page
Introduction
Depending on your print driver and printer, you can send raw text or content from an url to be printed instead of using a pdf file.
Content
Send a string of text to be printed using the content()
method on PrintTask. This is the method you should be using if you are printing
a receipt.
Printing::newPrintTask()
->printer($printerId)
->content('hello world')
->send();
URL
You can also print the contents of a URL using the url()
method on PrintTask.
Printing::newPrintTask()
->printer($printerId)
->url('https://google.com')
->send();