@extends('backend.layouts.master') @section('content')

{{ $page_title ?? '' }}

Go BackGo Back
@csrf
@error('name')
{{ $message }}
@enderror
@php $languagesArray = \App\Models\Location::whereNull('country_id') ->whereNull('state_id') ->where('id', '!=', $countrySingle->id) ->pluck('country_code') ->toarray(); @endphp @error('country_code')
{{ $message }}
@enderror
@foreach ($countries as $key => $country) @endforeach
{{ translate('S.N') }} {{ translate('Name') }} {{ translate('Flag') }} {{ translate('Code') }} {{ translate('Option') }}
{{ ($countries->currentpage() - 1) * $countries->perpage() + $key + 1 }} {{ $country->name }} @if ($country->country_code) {{ $country->name }} @endif {{ $country->country_code }}
@csrf
@push('footer')
{!! $countries->links() !!}
@endpush @endsection