@extends('layout.main') @push('title') Locations - {{$data->title}} @endpush @section('main-section')

Locations

Popular Places in {{$location->name}}


@foreach ($destinationData as $destinationRow) @if ($destinationRow->location_id == $location->id)
{{$destinationRow->name}}

From: {{$destinationRow->location->name}}

₹ {{$destinationRow->price}}
@endif @endforeach
@endsection