@push('header') @endpush @push('footer') @if ($page->longitude && $page->latitude) @endif @endpush

The Tech Capital

Event Location

    @if (isset($component['venue']) && $page->venue)
  • @endif @if (isset($component['travel']) && $page->travel)
  • @endif @if (isset($component['accommodation']) && $page->accommodation)
  • @endif @if (isset($component['things_to_do']) && $page->things_to_do)
  • @endif @if ($page->restrictions)
  • @endif
@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

@endif @if (isset($component['accommodation']) && $selected === 'accommodation' && $page->accommodation)

Accommodation

{!! Str::markdown($page->accommodation) !!}
@if ($hotels)
@foreach($hotels as $hotel)

{{$hotel->name}}

{{$hotel->name}}

{!! 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 }}

{{$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