@if(session()->has('admin_userid'))
@else
@endif
@extends('backend.header')
@section('content')
Edit Manage Parking location
@php
$id = $_GET['locationid'];
$get_details = DB::table('add_location')->where('locationid', $id)->get();
@endphp
@foreach ($get_details as $details)
@endforeach
@endsection