@extends('layouts.nebulox', [ 'title' => 'Locations', 'subtitle' => 'Add and manage locations' ]) @section('content')
{{-- ADD --}}
Add Location
@csrf
{{-- LIST --}}
Existing Locations
@forelse($locations as $l) @empty @endforelse
ID Location Created Delete
{{ $l->id }} {{ $l->locationName }} {{ $l->created_at }}
@csrf @method('DELETE')
No locations yet.
@endsection