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

{{ __('parishes.parishes') }}

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