@include('partials.topcss')
@include('partials.topmenu')
@php use Illuminate\Support\Str; @endphp
Samarth Hospitality
Tour Package
☰ Tour Filters
Tour Filters
Select Duration
All Packages
@foreach($durations as $duration)
{{ $duration }}
@endforeach
Destinations
@foreach($categories as $cat)
{{$cat->name}}
›
@endforeach
@foreach($destinations as $destination)
@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) }}
View More
@endforeach
@include('partials.footer')