25 lines
No EOL
868 B
PHP
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 |