@extends('admin.layout') @section('custom-style') @endsection @section('content')

Countries

All Countries

@if(isset($countries)) @foreach($countries as $country) @if (check_Permission('Country', 'edit')) @else @endif @endforeach @endif
S.No. Country Name Country Code Status Content Status
{{ $loop->iteration }} {{ $country->country_name }} {{ $country->country_code }}{{ ($country->status) ? 'Active' : 'Inactive' }} {{ ($country->content_status) ? 'Enable' : 'Disable' }} {{ ($country->status) ? 'Active' : 'Inactive' }} {{ ($country->content_status) ? 'Enable' : 'Disable' }}
@endsection @section('custom-scripts') @endsection