{{ __('Countries') }}
{{ __('Create Country') }}
@forelse ($countries as $country) {{ $country->name }}{{ $country->iso_2 }}{{ $country->iso_3 }}{{ $country->iso_number }}{{ $country->phone_code }} @empty @endforelse
{{ __('Actions') }}
{{ $countries->links() }}
@if($addCountry) @include('country.create') @endif @if($updateCountry) @include('country.edit') @endif @if($deleteCountry) @endif