@extends('layouts.admin') @section('content')
{{ __('Manage Locations') }}
@include('includes.admin.roles.settings')
@foreach ($states as $index => $state) @endforeach
{{ __('S.No.') }} {{ __('Name') }} {{ __('No. of Cities') }} {{ __('Country') }}
{{ $index + 1 }} {{ $state->name }} {{ $state->cities_count }} {{ $state->country->name ?? 'N/A' }}
@endsection @section('scripts') @endsection