mein-sterntours/resources/views/pdf/components/booking_info.blade.php
Kevin Adametz 881fc84207 08 2024
2024-08-05 11:58:09 +02:00

25 lines
No EOL
868 B
PHP

@if($booking->travel_country)
@foreach ($booking->travel_country->getContactLandsModels() as $country)
<table border="0" cellspacing="0" cellpadding="4" class="booking-table pdf-break-block">
<tr>
<th width="100%" colspan="4" class="text-center">
{!! $country->contact_headline !!}
</th>
</tr>
<tr>
<td width="25%" align="center">
{!! $country->contact_text_1 !!}
</td>
<td width="25%" align="center" >
{!! $country->contact_text_2 !!}
</td>
<td width="25%" align="center">
{!! $country->contact_text_3 !!}
</td>
<td width="25%" align="center">
{!! $country->contact_text_4 !!}
</td>
</tr>
</table>
@endforeach
@endif