08 2024
This commit is contained in:
parent
c1c613a4b9
commit
881fc84207
384 changed files with 50679 additions and 990 deletions
42
resources/views/pdf/components/booking_participant.blade.php
Normal file
42
resources/views/pdf/components/booking_participant.blade.php
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<table cellspacing="0" cellpadding="0" class="booking-table">
|
||||
<tr>
|
||||
<th width="50%">
|
||||
Reiseteilnehmer
|
||||
</th>
|
||||
<th width="50%">
|
||||
Geburtsdatum
|
||||
</th>
|
||||
</tr>
|
||||
@if ($booking->participant_firstname)
|
||||
<tr>
|
||||
<td>
|
||||
@if ($booking->participant_salutation)
|
||||
{{ $booking->participant_salutation->name }}
|
||||
@endif
|
||||
{{ $booking->participant_firstname }} {{ $booking->participant_name }}
|
||||
</td>
|
||||
<td>
|
||||
@if($document->voucher === null || $document->voucher !== 'agency')
|
||||
{{ _format_date($booking->participant_birthdate) }}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
@foreach ($booking->participants as $participant)
|
||||
@if(!$participant->participant_storno)
|
||||
<tr>
|
||||
<td>
|
||||
@if ($participant->salutation)
|
||||
{{ $participant->salutation->name }}
|
||||
@endif
|
||||
{{ $participant->participant_firstname }} {{ $participant->participant_name }}
|
||||
</td>
|
||||
<td>
|
||||
@if($document->voucher === null || $document->voucher !== 'agency')
|
||||
{{ _format_date($participant->participant_birthdate) }}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
@endforeach
|
||||
</table>
|
||||
Loading…
Add table
Add a link
Reference in a new issue