@php use GuzzleHttp\Client; use Illuminate\Support\Facades\App; use Illuminate\Http\Request; $locale = App::currentLocale(); $baseurl = env('API_URL'); $sort_no = Config::get('app.sort_no'); $end_no = Config::get('app.end_no'); $no_of_plots = count($property->propertyplots); $lat=0; $long=0; $plot_idd='0'; if(!is_null($property->google_map)) { $g_map_cord = trim($property->google_map,"https://www.google.com/maps/@"); $latlong = explode(",",$g_map_cord); $lat = (float)$latlong[0]; $long = (float)$latlong[1]; } @endphp @extends('plain_layout') @section('title') SVg Map | Property : {{$property->name}} @endsection @section('content')
@endsection @push('scripts') @if($property->id=='22') @else @endif @endpush