@php $configData = Helper::appClasses(); @endphp @extends('layouts/layoutMaster') @section('title', 'Country') @section('content') @include('admin.includes.show-msg')
Image

Add country, if it does not exist

@forelse ($countrys as $item) @include('admin.country.edit', ['country' => $item]) @empty @endforelse
# Country name Country code Actions
@include('admin.includes._iteration', ['data' => $countrys]) {{ Str::upper($item->name) }} {{ Str::upper($item->code) }}
No record found.
@include('admin/country/create') @endsection @section('page-script') @if (count($errors) > 0) @dump($errors) @endif @if (session()->has('err')) @endif @endsection