29 lines
1.2 KiB
PHP
29 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="50%">Leistungen</th>
|
|
<th width="11%" class="text-center">Teilnehmer</th>
|
|
<th width="5%" class="text-center">Status</th>
|
|
<th width="16%" class="text-right">Preis in €</th>
|
|
</tr>
|
|
@if ($booking->new_drafts)
|
|
@include('pdf.components.booking_drafs_storno')
|
|
@else
|
|
@include('pdf.components.booking_drafs_old_storno')
|
|
@endif
|
|
|
|
<tr>
|
|
<td colspan="4" class="text-left"><strong>
|
|
Reisebetrag am {{ _format_date($document->storno_date) }}, {{ $booking->pax }} Teilnehmer
|
|
</strong></td>
|
|
<td class="text-center"></td>
|
|
<td class="text-right">{{ $booking->price }} €</strong></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="4" class="text-left"><strong>Storno-Reisebetrag:</strong></td>
|
|
<td class="text-center"><i>{{ _number_format($document->storno_level) }} %</i></td>
|
|
<td class="text-right"><strong> {{ $booking->price_canceled }} €</strong></td>
|
|
</tr>
|
|
</table>
|