15 lines
555 B
PHP
15 lines
555 B
PHP
<table border="0" cellspacing="0" cellpadding="0" class="booking-table">
|
|
<tr>
|
|
<th width="9%" class="text-center">Von</th>
|
|
<th width="9%" class="text-center">Bis</th>
|
|
<th width="65%">Leistungen</th>
|
|
<th width="11%" class="text-center">Teilnehmer</th>
|
|
<th width="5%" class="text-right">Preis in €</th>
|
|
</tr>
|
|
@if ($booking->new_drafts)
|
|
@include('pdf.components.booking_drafs_voucher')
|
|
@else
|
|
@include('pdf.components.booking_drafs_old_voucher')
|
|
@endif
|
|
|
|
</table>
|