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

Countries

@foreach($countries as $i => $country) @endforeach
ID# Country Slug Country Code Created At Updated At
{{ $i + 1 }}
Flag {{ $country->name }}
{{ $country->slug }} {{ $country->country_code }} {{ date('d M Y h:i A', strtotime($country->created_at)) }} {{ date('d M Y h:i A', strtotime($country->updated_at)) }}
@endsection