08 2024
This commit is contained in:
parent
c1c613a4b9
commit
881fc84207
384 changed files with 50679 additions and 990 deletions
38
resources/views/pdf/components/booking_head.blade.php
Normal file
38
resources/views/pdf/components/booking_head.blade.php
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<table cellspacing="0" cellpadding="0" width="100%" border="0">
|
||||
<tr style="background: #648859;">
|
||||
<th width="50%" align="left" style="color: #ffffff; padding:0 0.5rem">
|
||||
<h3>{{ $document->title }} {{ _format_date($document->date) }}</h3>
|
||||
</th>
|
||||
<th width="50%" align="left" style="color: #ffffff; padding:0 0.5rem">
|
||||
<h3>Kundennummer: {{ $booking->customer->id }}</h3>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" style="color: #000; padding:0.5rem">
|
||||
{{-- @if (!isset($is_agency) || $is_agency !== true) --}}
|
||||
@if ($booking->customer->salutation_id != 3)
|
||||
{{ $booking->customer->getSalutation() }}
|
||||
@endif
|
||||
{{ $booking->customer->fullName() }}<br />
|
||||
{{ $booking->customer->street }}<br />
|
||||
{{ $booking->customer->zip }} {{ $booking->customer->city }}<br />
|
||||
{{ $booking->customer->country_id }}<br /><br />
|
||||
Tel.: {{ $booking->customer->phone }}<br />
|
||||
E-Mail-Adresse: {{ $booking->customer->email }}
|
||||
{{-- @endif --}}
|
||||
</td>
|
||||
<td align="left" style="color: #000; padding:0.5rem">
|
||||
Buchungsnummer: <strong>{{ $booking->lead_id }}</strong><br />
|
||||
Buchungsdatum: <strong>{{ _format_date($booking->booking_date) }}</strong><br /><br />
|
||||
Reisetermin: <strong>{{ _format_date($booking->start_date) }} -
|
||||
{{ _format_date($booking->end_date) }}</strong><br />
|
||||
Reisenummer: {{ $booking->travel_number }}<br />
|
||||
@if ($booking->travel_agenda)
|
||||
{{ $booking->travel_agenda->title }}
|
||||
@else
|
||||
{{ $booking->title }}
|
||||
@endif
|
||||
<br />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
Loading…
Add table
Add a link
Reference in a new issue