@if(userCan('City-create')==0) @php header("Location: " . URL::to('errors.403'), true, 302); exit(); @endphp @endphp @endif @extends('layouts.default') @php $pageTitle = 'Area Demarcation'; @endphp @section('title',$pageTitle) @section('PageHead') @if ( session('massage') )
× Success! {{session('massage')}}
@endif @if ( session('error') )
× Not Success! {{session('error')}}
@endif @if (Session::has('errors'))
@endif

{{$pageTitle}}

@stop @section('content')
{{ csrf_field() }}
@php $CityName= app('request')->input('cityName'); $appPerPage= app('request')->input('perPage'); @endphp

City Name List

Per Page @php $curentperPagesnum = isset($_GET['perPage'])?$_GET['perPage']:10; @endphp @php $perPages = array(10,15,20,50,100,500,1000);@endphp
{{paginationHeaderInfo($data_city)}}
{{$data_city->appends([ 'cityName' => $CityName, 'perPage' => $appPerPage ])->links('pagination::bootstrap-4')}}
@foreach($data_city as $key=>$data) @endforeach
City Name Status Action
{{@$data->name}} @if((@$data->status)==1) Active @else Deactive @endif
{{paginationHeaderInfo($data_city)}}
{{$data_city->appends([ 'cityName' => $CityName, 'perPage' => $appPerPage ])->links('pagination::bootstrap-4')}}
{{ csrf_field() }}
@php $CityId= app('request')->input('city_id'); $ZoneName= app('request')->input('zoneName'); $appPerPage1= app('request')->input('perPage1'); @endphp

Zone Name List

Per Page @php $curentperPagesnum = isset($_GET['perPage1'])?$_GET['perPage1']:10; @endphp @php $perPages = array(1,15,20,50,100,500,1000);@endphp
{{paginationHeaderInfo($data_zone)}}
{{$data_zone->appends([ 'city_id' => $CityId, 'zoneName' => $ZoneName, 'perPage1' => $appPerPage1 ])->links('pagination::bootstrap-4')}}
@foreach($data_zone as $key=>$data) @endforeach
Zone Name City Name Status Action
{{@$data->name}} {{@$data->city_name->name}} @if((@$data->status)==1) Active @else Deactive @endif
{{paginationHeaderInfo($data_zone)}}
{{$data_zone->appends([ 'city_id' => $CityId, 'zoneName' => $ZoneName, 'perPage1' => $appPerPage1 ])->links('pagination::bootstrap-4')}}
{{ csrf_field() }}

Area Name List


@foreach($data_area as $key=>$data) @endforeach
Area Name Zone Name Status Action
{{@$data->name}} {{@$data->zone_name->name}} @if((@$data->status)==1) Active @else Deactive @endif
@stop