@extends('layouts.app') @section('title') {{$item->title}} {!! htmlScriptTagJsApi() !!} @endsection @section('body')
@if($item->price)

Price

{{$item->price}}
@endif @if($item->date)

Date

{{$item->date}}
@endif @if($item->duration)

Duration

{{$item->duration}}
@endif @if($item->difficulty)

Difficulty

{{$item->difficulty}}
@endif
{!!$item->description!!}
@if(json_decode($item->highlights)->body)

Highlights

@foreach(json_decode($item->highlights)->body as $high)

{{$high->title}}

@endforeach
@endif @if(json_decode($item->itinerary)->body)

Itinerary Descriptions

@foreach(json_decode($item->itinerary)->body as $iti)
{{$iti->day}}

{{$iti->title}}

{!!$iti->description!!}

@endforeach
@endif @if($item->brochure) @endif @endsection @section('javascript') @endsection