@extends('admin.layouts.app')
@section('content')
| # |
Title (EN) |
Status |
Actions |
@if (count($countries) > 0)
@foreach ($countries as $index => $country)
| {{ $index + 1 }} |
{{ $country->title_en }} |
@if ($country->status == 1)
Active
@else
Dective
@endif
|
Edit
|
@endforeach
@else
| Records Not Found |
@endif
@endsection