@extends('layouts.admin') @section('content')
@if(isset($all_countries))
All Cities
@foreach($all_countries as $key => $country) @php $iso3 = $country->country; $country_name = DB::table('all_countries')->where('iso3',$iso3)->orderBy('id', 'DESC')->get(); @endphp @foreach($country_name as $cname) @php $states = DB::table('all_states')->where('country_id',$cname->id)->orderBy('id', 'DESC')->get(); @endphp @foreach($states as $state) @endforeach @endforeach @endforeach
Id State Country
{{$i++}} {{$state->name}} {{$cname->nicename}}
@endif
@endsection