@extends('layouts.adminLayouts') @section('head') @stop @section('content-header')

ویرایش منطقه

{{ Breadcrumbs::render('parish.edit',['title' => $parish->name]) }}
@stop @section('content')
بازگشت

ویرایش منطقه {{$parish->name}}

@csrf






@stop @section('footer') @stop @php function getState($id){ $city = \App\City::find($id); $state = \App\State::where('id',$city->state_id)->first(); if($state){ return $state; } return 'در سامانه موجود نیست'; } function getCity($id){ $city = \App\City::find($id); if($city){ return $city; } return 'در سامانه موجود نیست'; } @endphp