32 lines
1.2 KiB
PHP
32 lines
1.2 KiB
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="55%">Leistungen</th>
|
|
<th width="11%" class="text-center">Teilnehmer</th>
|
|
<th width="16%" class="text-right">Preis in €</th>
|
|
</tr>
|
|
@if ($booking->new_drafts)
|
|
@include('pdf.components.booking_drafs')
|
|
@else
|
|
@include('pdf.components.booking_drafs_old')
|
|
@endif
|
|
|
|
<tr>
|
|
<td colspan="4" class="text-right"><strong>Gesamtpreis: </strong></td>
|
|
<td class="text-right"><strong> {{ $booking->price }} €</strong></td>
|
|
</tr>
|
|
|
|
@foreach ($booking->booking_service_items as $booking_service_item)
|
|
@if ($booking_service_item->travel_company && $booking_service_item->travel_company->name == 'ELVIA')
|
|
<tr>
|
|
<td colspan="5"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td>Reiseversicherung</td>
|
|
<td colspan="4"> {{ $booking_service_item->name }}</td>
|
|
<td class="text-right"><strong> {{ $booking_service_item->service_price }} €</strong></td>
|
|
</tr>
|
|
@endif
|
|
@endforeach
|
|
</table>
|