@extends('layouts.admin') @section('title') @lang('Manage Country') @endsection @section('breadcrumb')

@lang('Manage Country')

@if (access('add country')) @endif
@endsection @section('content')
@forelse ($countries as $country)

{{$country->name}}

  • @lang('Flag')
  • @lang('Currency') {{$country->currency->code}}
  • @lang('Country Code') {{$country->code}}
  • @lang('Dial Code') {{$country->dial_code}}
@if (access('update country')) @lang('Edit Country') @endif
@empty
@lang('No Country Found')
@endforelse
@if (access('add country')) @endif @if (access('update country')) @endif @endsection @push('script') @endpush