@extends('admin.layout') @section('content')

Country



@foreach($country as $item) @endforeach
# Name ISO Code Dial Code Currency Symbol left Symbol right Currency Value Status Actions
{{ $loop->iteration }} {{ $item->name }} {{ $item->iso }} {{ $item->dial }} {{ $item->currency }} {{ $item->symbol_left }} {{ $item->symbol_right }} {{ $item->value }} {{ $item->allow_zone }}
{{ method_field('DELETE') }} {{ csrf_field() }}
{!! $country->appends(['search' => Request::get('search')])->render() !!}
@endsection