@extends('layout') @section('title','Country') @section('content')

Add Country

@csrf
@if(isset($country_edit)) @else @endif

Manage Countries

@php $sn = 1; @endphp @foreach($country as $countrys) @endforeach
S.No Country Name Region Status Action
{{$sn++}} {{$countrys->country_name}} {{$countrys->region_name}} @if($countrys->status == 1) {{'Active'}} @else {{'Inactive'}} @endif  Edit @if($countrys->status)  Suspend @else  Unsuspend @endif
@endsection