@extends('admin.layout.base') @section('title', 'Country') @section('content')
 Countries
Add Country @foreach($countries as $index => $country) @endforeach
ID Name Created at Action
{{$index + 1}} {{$country->name}} {{ date('Y-m-d: H:i:A', strtotime( $country->created_at ) )}}
{{ csrf_field() }}
ID Name Created at Action
@endsection