@extends('admin.template.layout') @section('header') @stop @section('content')
@if(check_permission('states','Create'))
Create State
@endif
@foreach ($states as $st) @endforeach
# Name Country Is Active Created Date Action
{{ $i }} {{ $st->name }} {{ $st->country->name }} {{web_date_in_timezone($st->created_at,'d-M-Y h:i A')}}
@stop @section('script') @stop