@extends('admin.layouts.admin') @section('style') @endsection @section('content')

Job Area List

@if(session('alert-green'))
{{ session('alert-green') }}
@endif @if(session('alert-danger'))
{{ session('alert-danger') }}
@endif @if($errors->any())
@foreach ($errors->all() as $error)
* {{$error}}
@endforeach
@endif {{ session('status') }}
@if(isset($areaLists) && count($areaLists) > 0) @foreach($areaLists as $areaList) @endforeach @else @endif
SL No. Location Name Parent Action
{{ $loop->iteration ?? '' }} {{ $areaList->name ?? '' }} {{ $areaList->parent->name ?? '' }}
@csrf
No Records Found !!
@endsection @section('script') @endsection