@extends('app-new') @push('content-header') @endpush @section('content')
@forelse($locations as $location) @empty @endforelse
Name Manager Employees Sub Locations Status
{{ $location->name }} {{ $location->manager->name ?? '-' }} {{ $location->employees->count() }} {{ $location->subLocations->count() }} {{ ucfirst($location->status) }}
No data found.
@endsection