@include('partials.topcss')
@include('partials.topmenu')
@foreach($destinations as $destination)
{{ $destination->alt_text }} @if($destination->sale_price and $destination->sale_price < $destination->pricing) @php $discountPercentage = round((($destination->pricing - $destination->sale_price) / $destination->pricing) * 100); @endphp {{$discountPercentage}}% OFF @endif

{{ $destination->title }}

{{ $destination->duration }} {{ $destination->location }}
@php $features = $destination->features??[]; @endphp @foreach($features as $feature)
{{ $feature['title'] }}
@endforeach
Starting From
₹{{ number_format($destination->pricing) }} ₹{{ number_format($destination->sale_price) }}
@endforeach
@include('partials.footer')