@extends('front.layouts.master') @section('title', isset($title) ? $title : 'Home') @section('description', isset($description) ? $description : '') @section('keywords', isset($keywords) ? $keywords : '') @section('content')
{!! langConverter($activity->en_description, $activity->fr_description) !!}
    @foreach ($activity->reservations as $reservation)
  • {{ langConverter($reservation->en_name, $reservation->fr_name) }}
  • @endforeach
@if (isset($activity->video_html))
@endif {{--
@foreach ($activity->activityTypes as $type)

{{ langConverter($type->en_name, $type->fr_name) }}

{!! langConverter($type->en_description, $type->fr_description) !!}

@if (isset($type->reservationActivityTypes))
    @foreach ($type->reservationActivityTypes as $reservation)
  • {{ langConverter($reservation->reservations->en_name, $reservation->reservations->fr_name) }}
  • @endforeach
@if (isset($type->en_inner_description)) {{ __('Learn More') }} @endif @endif
@endforeach
--}}
@endsection @push('post_script') @endpush