Province
City
District
Subdistrict
@foreach ($addresses->where('address_id', $country->id) as $province)
@forelse ($addresses->where('address_id', $province->id) as $city)
@forelse ($addresses->where('address_id', $city->id) as $district)
@foreach ($addresses->where('address_id', $district->id) as $subdistrict)
@endforeach
@empty
@endforelse
@empty
@endforelse
@endforeach