laravel-pdf icon indicating copy to clipboard operation
laravel-pdf copied to clipboard

How to add additional pages?

Open foRsxs opened this issue 3 years ago • 2 comments

Hi there! How to generate PDF with 2-3 pages ? I'v tried to make 2 html in 1 view - but seems it's not right way. Pls help)

foRsxs avatar Sep 16 '21 12:09 foRsxs

have you found any any solution for that problem ?

farshadff avatar Nov 23 '21 09:11 farshadff

This has worked for me:

<style>
    .page-break {
        page-break-after: always;
    }
</style>

{{-- Contents of first page --}}
<p class="page-break"></p>
{{-- Contents of second page --}}
<p class="page-break"></p>
{{-- Contents of third page ... --}}

Edit: The custom tag <pagebreak /> also works, and is far more customizable:

{{-- Contents of first page --}}
<pagebreak />
{{-- Contents of second page --}}
<pagebreak />
{{-- Contents of third page ... --}}

Remls avatar Mar 27 '22 06:03 Remls