@extends('admin.layouts.app') @section('panel')
@lang('ISO') @lang('Currency Name') @lang('Currency Code') @php $counter = 0; @endphp @foreach ($apiCountries as $item) @php $item = (object) $item; @endphp @if (!in_array($item->isoName, $existingCountryCodes)) @php $counter++; @endphp {{ $item->isoName }} {{ $item->currencyName }} {{ $item->currencyCode }} @endif @endforeach @if ($counter == 0)
@lang('No country available') @lang('There are no available data to display on this table at the moment.')
@endif
@endsection @push('breadcrumb-plugins') @endpush @push('script') @endpush