@if(session()->has('admin_userid'))
@else
@endif
@extends('backend.header')
@section('content')
City Master Lists
@php
$get_city =DB::table('city_master')->get();
$count = 1;
@endphp
| S.No |
City name |
Action |
@foreach ($get_city as $city)
| {{$count}} |
{{$city->city_name}} |
|
@php
$count++
@endphp
@endforeach
@endsection