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