@include('partials.topcss')
@include('partials.topmenu')
@php use Illuminate\Support\Str; @endphp
{{ $category->name }}
@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->durationDetail->name ?? '' }} {{ $destination->location }}
@php $featureIds = $destination->features_json ?? []; $features = \App\Amenity::whereIn('id', $featureIds)->get(); @endphp @foreach($features as $feature)
{{ $feature->title }}
@endforeach
Starting From
₹{{ number_format($destination->pricing) }} ₹{{ number_format($destination->sale_price) }}
@endforeach
@include('partials.footer')