@foreach($tour_packages_places as $key => $tour_packages_place)
@php
$destination_id = $tour_packages_place->id;
$destination_name = $tour_packages_place->destination_name;
if($key == 0)
$show_active ='show active';
else
$show_active ='';
@endphp
@foreach($tour_packages_place->tour_package_todos as $tour_package_todo)
{{$tour_package_todo->title}}
{{$tour_package_todo->category->name}}
{{--
{{$tour_package_todo->category}}, {{$tour_package_todo->sub_category}}
--}}
{{$tour_package_todo->todos_description}}
@endforeach
@foreach($tour_packages_place->tour_package_hotels as $tour_package_hotel)
{{$tour_package_hotel->addHotel}}
{{--
{{$tour_package_hotel->address}}, {{$tour_package_hotel->landmark}}, {{$tour_package_hotel->pincode}}
--}}
{{$tour_package_hotel->address}}
{{$tour_package_hotel->hotel_description}}
@endforeach
@foreach($tour_packages_place->tour_package_foods as $tour_package_food)
{{$tour_package_food->name}}
{{--
{{$tour_package_food->category}}, {{$tour_package_food->sub_category}}
--}}
{{$tour_package_food->category->name}}
{{$tour_package_food->food_description}}
@endforeach
@foreach($tour_packages_place->tour_package_shops as $tour_package_shop)
{{$tour_package_shop->shop_name}}
{{$tour_package_shop->address}}
{{--
{{$tour_package_shop->address}}, {{$tour_package_shop->landmark}}, {{$tour_package_shop->pincode}}
--}}
{{$tour_package_shop->shop_description}}
@endforeach
@endforeach