@extends('core::layouts.app') @section('title', __('Country Details')) @section('content')
@lang('Countries')
@if($paginationData->count() > 0)
@foreach($paginationData as $item) @endforeach
@lang('Country') @lang('Sort name') @lang('Phone code') @lang('Currency') @lang('Code') @lang('Symbol') @lang('Thousand separator') @lang('Decimal separator') @lang('Action')
{{ $item->country->name }} {{ $item->sort_name }} {{ $item->phone_code }} {{ $item->currency }} {{ $item->code }} {{ $item->symbol }} {{ $item->thousand_separator }} {{ $item->decimal_separator }} @lang('Edit')
@endif
{{ $paginationData->appends( Request::all() )->links() }}
@if($paginationData->count() == 0)
@lang('No results')
@endif
@stop