@extends('layouts.app') @section('title', 'Manage Sub-Locations') @section('header_title', 'Sub-Location Management') @section('content')

Add Sub-Location

@csrf
@foreach($subLocations as $sub) @endforeach
Name Parent Location Status Action
{{ $sub->name }} {{ $sub->location->name }} {{ $sub->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
@endsection