Method $invoice->create() exits app and dosent return string
AliAmjid opened this issue · 2 comments
AliAmjid commented
In WebChemistry\Invoice\Renderers\PDFRenderer on line 97
return $this->pdf->Output();
This Echos the file and exits the app
There should Be
return $this->pdf->Output("S");
This just returns string
MartkCz commented
I see return $this->pdf->Output('S')
in dev-master https://github.com/contributte/invoice/blob/master/src/Renderers/PDFRenderer.php#L113
PS: you must run composer require contributte/invoice:dev-master
and remove webchemistry/invoice
AliAmjid commented
Yep, my bad. i had older version.