@extends('../../master_layout/admin_master') @section('title') {{config('constants.APP_NAME')}} Locations Area @endsection @section('content')

Locations of {{$result[0]->name}} > {{$result[0]->city_name}} > {{$result[0]->location_name}}

@if(session('message'))
@if(session('message.type')=='danger')

Sorry! {!! session('message.text') !!}

@else

Success! {!! session('message.text') !!}

@endif
@endif
@csrf
@if(isset($areas) && !empty($areas)) @foreach($areas as $area) @endforeach @endif
Area Name Action
@if ($errors->has('area_name')) {{ $errors->first('area_name') }} @endif
@if (!empty($areas)) {!! $areas->links() !!} @endif
@endsection @section('custom_js') @endsection