@extends('admin.layouts.app') @section('title', 'Nearby Locations') @section('breadcrumb')
  • Properties
  • Nearby Locations
  • @endsection @section('heading', 'Nearby Locations') @section('subheading', 'Manage nearby points of interest for properties.') @section('content') {{-- Add Form --}}

    Add Nearby Location

    @csrf
    {{-- Table --}}
    @foreach ([ ['id' => 1, 'location' => 'Bandra Railway Station', 'type' => 'Metro', 'distance' => '0.8 km', 'property' => '3 BHK Luxury Apartment - Bandra West', 'status' => 1], ['id' => 2, 'location' => 'Lilavati Hospital', 'type' => 'Hospital', 'distance' => '1.2 km', 'property' => 'Premium Villa - Juhu', 'status' => 1], ['id' => 3, 'location' => 'Phoenix Mall', 'type' => 'Mall', 'distance' => '2.5 km', 'property' => 'Commercial Office - BKC', 'status' => 1], ['id' => 4, 'location' => 'DPS School', 'type' => 'School', 'distance' => '0.5 km', 'property' => '2 BHK Apartment - Koramangala', 'status' => 1], ['id' => 5, 'location' => 'HSBC Bank', 'type' => 'Bank', 'distance' => '0.3 km', 'property' => '3 BHK Luxury Apartment - Bandra West', 'status' => 1], ['id' => 6, 'location' => 'Juhu Beach', 'type' => 'Park', 'distance' => '0.2 km', 'property' => 'Premium Villa - Juhu', 'status' => 1], ] as $nearby) @endforeach
    ID Location Type Distance Property Status Actions
    {{ $nearby['id'] }} {{ $nearby['location'] }} {{ $nearby['type'] }} {{ $nearby['distance'] }} {{ $nearby['property'] }}
    @endsection