@extends('layouts.main') @push('styles') @endpush @section('content')
| {{ __('counties.county_name') }} | {{ __('counties.district_name') }} | ||
|---|---|---|---|
| {{ $county->name }} | {{ (($county->district_id != 0) && isset($districts[$county->district_id])) ? $districts[$county->district_id] : '' }} | {{ __('counties.edit') }} | {{ Form::model($county->id ,['method' => 'DELETE', 'route' => ['counties.destroy', $county->id]]) }} {{ Form::close() }} |