@extends('layouts.app') @section('template_title') Countries @endsection @section('content')
{{ __('Countries') }}
@if ($message = Session::get('success'))

{{ $message }}

@endif
@foreach ($countries as $country) @endforeach
No Name Status Created At Updated At
{{ ++$i }} {{ $country->name }} @if($country->status == 1) {{ __('Yes') }} @else {{ __('No') }} @endif {{ $country->created_at->format('m/d/Y h:i A') }} {{ $country->updated_at->format('m/d/Y h:i A') }}
{{ __('Show') }} {{ __('Edit') }} @csrf @method('DELETE')
{!! $countries->withQueryString()->links() !!}
@endsection