@extends('layouts.admin_default') @section('title', 'City Table') @section('page', 'City Table / List') @section('content')
@if(isset($errors) && $errors->any()) @foreach($errors->all() as $error )
{{$error}}
@endforeach @endif @if(session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif
Dashboard / City
{{-- --}}
Apply action on checked record.
@php $countries = \App\Models\AllCountry::distinct()->get(['id', 'country_name']); $states = \App\Models\State::distinct()->get(['id', 'state_name']); $citys = \App\Models\City::distinct()->orderBy('city_name', 'asc')->get(['id', 'city_name']); @endphp
City Id City Name Country Name Country Id Timezone State Name State Id Created Date Action
City Id City Name Country Name Country Id Timezone State Name State Id Created Date Action
@endsection @section('footer') @endsection