@extends('admin.layouts.app')
@section('title', 'City')
@section('content')
| # |
Country |
State |
City |
Status |
Action |
@foreach ($cities as $index => $city)
| {{ $index + 1 }} |
{{ $city->country?->Name }} |
{{ $city->state?->Name }} |
{{ $city->Name }} |
|
|
@endforeach
@endsection
@push('scripts')
@endpush