@extends('layouts.admin') @section('content')
@can('country_create')
@endcan
{{ trans('cruds.country.title_singular') }} {{ trans('global.list') }}
@foreach($countries as $key => $country) @endforeach
{{ trans('cruds.country.fields.id') }} {{ trans('cruds.country.fields.name') }} {{ trans('cruds.country.fields.short_code') }}  
{{ $country->id ?? '' }} {{ $country->name ?? '' }} {{ $country->short_code ?? '' }} @can('country_show') {{ trans('global.view') }} @endcan @can('country_edit') {{ trans('global.edit') }} @endcan @can('country_delete')
@endcan
@endsection @section('scripts') @parent @endsection