@extends('admin.layout.master') @section('title') Region Wise Countries @endsection @section('content')
Region Wise Countries
@forelse($regions->country_data as $t=>$country) @empty @endforelse
Id Region Country Code Flag
{{ $t+1 }} {{ ($regions->name) ? $regions->name : '--' }} {{ ($country->country) ? $country->country->name : '--' }} {{ ($country->country) ? $country->country->code : '--' }}
@endsection @section('script') @endsection