@extends('layouts.app') @section('title', 'Locations') @section('content')
| # | Name | Parent | Latitude | Longitude | Status | Order | Actions |
|---|---|---|---|---|---|---|---|
| Name | Parent | Status | |||||
| {{ $loop->iteration }} | {{ $location->name }} | {{ $location->parent?->name ?? '-' }} | {{ $location->latitude }} | {{ $location->longitude }} | {{ $location->status ? 'Active' : 'Inactive' }} | {{ $location->order }} | @can('locations.edit') Edit @endcan @can('locations.delete') @endcan |
| No locations found. | |||||||