How to get two pages in a document
david-saint opened this issue · 7 comments
Hi, I was trying to generate pages in the same document, but I don't know how to go about doing this.
I have tried using two make();but it didn't work
is there any fix you can offer
what do you mean?
I am creating an invoice for service provider and customer. I want to send both invoices in a single pdf file.
The single pdf file would now be sent to each of them.
Well as far at this package do, its not possible, you will need to use somethinf to merge 2 pdfs
Are you planning to implement it in the future.
Hummm not really...
@david-saint you can implement on your own template styles
<style>
.page_break { page-break-before: always; }
</style>
and then in body
<div class="page_break"></div>
this will give you and extra page on PDF template
@ConsoleTVs I think we can close this issue.