@if(session()->has('message')) @php echo ''; @endphp @endif @extends('layouts.app', [ 'class' => '', 'elementActive' => 'locations' ]) @section('content') @error('state') @php echo ''; @endphp @enderror @error('city') @php echo ''; @endphp @enderror @error('area') @php echo ''; @endphp @enderror
@csrf
State
@forelse($states as $state) @empty

No States found

@endforelse
SNO Country State Action
{{$state->id}} {{$state->country_detail->name}} {{$state->name}}
@csrf
City
@forelse($cities as $city) @empty

No City found

@endforelse
SNO State City Action
{{ $city->id }} {{ $city->state_detail->name }} {{ $city->name }}
@csrf
Area
@forelse($areas as $area) @empty

No City found

@endforelse
SNO City Area Action
{{ $area->id }} {{ $area->city_detail->name }} {{ $area->name }}
@endsection @push('scripts') @endpush