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