Location Management

Manage rental locations and pickup points

Back to Dashboard

Pickup/Dropoff Locations

Manage global pickup and dropoff locations for all listings

@if (session()->has('message'))
{{ session('message') }}
@endif @if($showForm)

{{ $editMode ? 'Edit Location' : 'Add New Location' }}

@error('name') {{ $message }} @enderror
@error('type') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
@error('latitude') {{ $message }} @enderror
@error('longitude') {{ $message }} @enderror
Active (available for hosts)
@endif
@forelse($locations as $location) @empty @endforelse
Location Type Address Status Created By Actions
{{ $location->name }}
@if($location->latitude && $location->longitude)
{{ number_format($location->latitude, 4) }}, {{ number_format($location->longitude, 4) }}
@endif
{{ ucfirst(str_replace('_', ' ', $location->type)) }}
{{ $location->address ?? '-' }}
{{ $location->creator ? $location->creator->name : 'System' }}

No pickup locations

Get started by creating a new location.