@extends('layouts.main') @push('styles') @endpush @section('content')

{{ __('sub_counties.sub_counties') }}

@include('flash::message')
@foreach($sub_counties as $sub_county) @endforeach
{{ __('sub_counties.sub_county_name') }} {{ __('sub_counties.county') }}
{{ $sub_county->name }} {{ isset($counties[$sub_county->county_id]) ? $counties[$sub_county->county_id] : "" }} {{ __('sub_counties.edit') }} {{ Form::model($sub_county->id ,['method' => 'DELETE', 'route' => ['subcounties.destroy', $sub_county->id]]) }} {{ Form::close() }}
@endsection @push('scripts') @endpush