@extends('layout') @section('title','City') @section('content')

Add City

@csrf
@if(isset($city_edit)) @else @endif

Manage Cities

@php $sn = 1; @endphp @foreach($city as $citys) @endforeach
S.No Country Name State City Status Action
{{$sn++}} {{$citys->country_name}} {{$citys->state_title}} {{$citys->name}} @if($citys->status == 1) {{'Active'}} @else {{'Inactive'}} @endif  Edit @if($citys->status)  Suspend @else  Unsuspend @endif
@endsection