@extends('layouts.admin.admin') @section('title', 'Region List') @section('content')
@include('partials.header') @include('layouts.admin.sidebar')
Geography ManagementRegionRegions List

Regions List
@if(session('success')) @endif @if(session('error')) @endif
@foreach ($regions as $index => $region) {{-- Delete confirmation modal Start--}} {{-- Delete confirmation modal End--}} @endforeach
S.NO REGION ID REGION CODE REGION NAME DIVISION NAME ACTION
{{$index+1}} {{$region->id}} {{$region->region_code ? $region->region_code : '—'}} {{$region->name ? $region->name : '—'}} {{ $region->division ? $region->division->name : '—' }} Edit
@stop