@extends('dashboard.layout.partials.dashboard') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if (session()->has('message'))
{{session('message')}}
@endif
@if (session()->has('hasError'))
{{session('hasError')}}
@endif

Area Name



@foreach($area as $item) @php $city=App\Models\City::where('id',$item->city_id)->first(); @endphp @endforeach
City Name Area Name Edit Delete
{{$city->city_name}} {{$item->area_name}} Edit Delete
@endsection @section('javascript') @endsection