mein-sterntours/resources/views/pdf/components/booking_body_voucher.blade.php
Kevin Adametz 881fc84207 08 2024
2024-08-05 11:58:09 +02:00

17 lines
560 B
PHP

<table border="0" cellspacing="0" cellpadding="0" class="booking-table">
<tr>
<th width="10%" class="text-center">Von</th>
<th width="10%" class="text-center">Bis</th>
<th width="55%">Leistungen</th>
<th width="10%" class="text-center">Teilnehmer</th>
<th width="15%" class="text-right">Preis in &euro;</th>
</tr>
@if ($booking->new_drafts)
@include('pdf.components.booking_drafs_voucher')
@else
@include('pdf.components.booking_drafs_old_voucher')
@endif
</table>