@extends('layouts.admin') @section('content')
@include('admin.application_settings.sidebar')

{{ __('Country') }}

@foreach($countries as $country) @endforeach
{{__('SL')}} {{__('Name')}} {{__('Short Name')}} {{__('Phone Code')}} {{__('Continent')}} {{__('Action')}}
{{$loop->iteration}} {{$country->country_name}} {{$country->short_name}} {{$country->phonecode}} {{$country->continent}}
edit
{{ method_field('DELETE') }}
{{$countries->links()}}
@endsection @push('style') @endpush @push('script') @endpush