@extends('layouts.app') @section('content')

@lang('crud.countries.index_title')

@forelse($countries as $country) @empty @endforelse
@lang('crud.countries.inputs.code') @lang('crud.countries.inputs.name') @lang('crud.countries.inputs.country_code') @lang('crud.common.actions')
{{ $country->code ?? '-' }} {{ $country->name ?? '-' }} {{ $country->country_code ?? '-' }}
@can('update', $country) @endcan @can('view', $country) @endcan @can('delete', $country)
@csrf @method('DELETE')
@endcan
@lang('crud.common.no_items_found')
{!! $countries->render() !!}
@endsection