@extends('admin.layouts.app') @section('content')

Countries

Countries Lists
@if (count($countries) > 0) @foreach ($countries as $index => $country) @endforeach @else @endif
# Title (EN) Status Actions
{{ $index + 1 }} {{ $country->title_en }} @if ($country->status == 1) Active @else Dective @endif Edit
Records Not Found
@endsection