@extends('admin.layouts.app') @section('content')
{{-- navbar - top --}} @include('admin.layouts.topbar')
{{-- navbar - side --}} @include('admin.layouts.nav')

{{ __('Locations / City') }}

@if(Request::exists('state_id')) @else @endif
@error('country_id') {{ $message }} @enderror
@error('state_id') {{ $message }} @enderror
@forelse($mc as $city) @empty @endforelse
{{ __('Country') }} {{ __('State') }} {{ __('City') }} {{ __('Actions') }}
{{ $city->state->country->name." - ".$city->state->country->sortname }} {{ $city->state->name }} {{ $city->name }} Edit
{{ __('No Results Found!') }}
{{ $mc->withQueryString()->render("pagination::bootstrap-5") }}
@endsection @extends('admin.layouts.footer')