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

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

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

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

@else

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

@endif
@endif
@csrf
@if(isset($locations) && !empty($locations)) @foreach($locations as $location) @endforeach @endif
Location Name Action
@if ($errors->has('location_name')) {{ $errors->first('location_name') }} @endif
@if (!empty($locations)) {!! $locations->links() !!} @endif
@endsection @section('custom_js') @endsection