@if (isset($component['venue']) && $selected === 'venue' && $page->venue)
Venue
{!! Str::markdown($page->venue) !!}
@if ($page->longitude && $page->latitude)
@endif
@endif
@if (isset($component['travel']) && $selected === 'travel' && $page->travel)
Travel Information
{!! Str::markdown($page->travel) !!}
@if ($travels)
@foreach($travels as $travel)
{!! Str::markdown($travel->description) !!}
@endforeach
@endif
@endif
@if (isset($component['accommodation']) && $selected === 'accommodation' && $page->accommodation)
Accommodation
{!! Str::markdown($page->accommodation) !!}
@if ($hotels)
@foreach($hotels as $hotel)
{{$hotel->name}}
@if ($hotel->website)
-
Website
@endif
@if ($hotel->map)
-
Map
@endif
{!! Str::markdown($hotel->description) !!}
@endforeach
@endif
@endif
@if (isset($component['things_to_do']) && $selected === 'things-to-do' && $page->things_to_do)
Things To Do
{!! Str::markdown($page->things_to_do) !!}
@foreach($groups as $key => $value)
@endforeach
@foreach($groups as $key => $value)
@if ($group === $key)
{{$value}}
@forelse($toDos as $toDo)
{{$toDo->name}}
@if ($toDo->website)
Website
@endif
@if ($toDo->map)
Map
@endif
{!! Str::markdown($toDo->description) !!}
@empty
Sorry, nothing found for {{ $value }}
@endforelse
@endif
@endforeach
@endif
@if ($selected === 'restrictions' && $page->restrictions)
Entering {{$page->country}}
{!! Str::markdown($page->restrictions) !!}
@endif