@extends('admin.layouts.app') @section('content') State Add New Name Country Created At Actions @foreach ($states as $key => $state) {{ $state->name }} {{ $state->country->name }} {!! strtotime($state->created_at) !!} {!! date('m/d/Y H:i:A', strtotime($state->created_at)) !!} @endforeach @endsection @section('footer-js') @endsection