{{-- Guest page footer: only contact + extras saved on the website assignment editor (hotel email, phone, address, optional public_site settings, public_site_extra_footer). No city/country line (those are not edited on the guest page form). --}} @php $tone = $tone ?? 'light'; $showCopyright = (bool) ($showCopyright ?? false); $fb = $hotel->getPublicSiteSetting('social_facebook', ''); $ig = $hotel->getPublicSiteSetting('social_instagram', ''); $tw = $hotel->getPublicSiteSetting('social_twitter', ''); $yt = $hotel->getPublicSiteSetting('social_youtube', ''); $hasSocial = filled($fb) || filled($ig) || filled($tw) || filled($yt); @endphp @once @push('head') @endpush @endonce
@if($showCopyright)

© {{ date('Y') }} {{ e($hotel->name) }}

@else

{{ e($hotel->name) }}

@endif @if(filled($hotel->address))

{{ e($hotel->address) }}

@endif @if(filled($hotel->email) || filled($hotel->phone))

@if(filled($hotel->email)) {{ e($hotel->email) }} @endif @if(filled($hotel->email) && filled($hotel->phone)) @endif @if(filled($hotel->phone)) {{ e($hotel->phone) }} @endif

@endif @if($hasSocial)
@if(filled($ig))@endif @if(filled($fb))@endif @if(filled($tw))@endif @if(filled($yt))@endif
@endif @if(filled($hotel->public_site_extra_footer))
{!! nl2br(e($hotel->guestPageText($hotel->public_site_extra_footer))) !!}
@endif