@php $images = json_decode($package->images, true); $image = @$images[0]; if (!str_contains($image, 'http')) { $image = "/assets/images/packages/$image"; } @endphp @extends('layout') @section('container')

{{ $package->name }}

{{ $package->desc_1 }}

@foreach($images as $k => $v) @php if (!str_contains($v, 'http')) { $v = "/assets/images/packages/$v"; } @endphp
@endforeach

Itinerary

    @php $itinerary = json_decode($package->itinerary, true); @endphp @foreach($itinerary as $k => $v)
  • {{ $v }}
  • @endforeach

Including

    @php $itinerary = json_decode($package->itinerary, true); @endphp @foreach($itinerary as $k => $v)
  • {{ $v }}
  • @endforeach
@if($package->excluding != null)

Excluding

    @php $excluding = json_decode($package->excluding, true); @endphp @foreach($excluding as $k => $v)
  • {{ $v }}
  • @endforeach
@endif

Pricing

@if($package->change_rate != null)

Change Rate

    @php $change_rate = json_decode($package->change_rate, true); @endphp @foreach($change_rate as $k => $v)
  • {{ $v }}
  • @endforeach
@endif

Pickup Area

    @php $pickup_area = json_decode($package->pick_up_area, true); @endphp @foreach($pickup_area as $k => $v)
  • {{ $v }}
  • @endforeach

Interest With This Package?

@stop