@extends('admin.layouts.app') @section('title', isset($zoneRule) ? 'Edit Zone Rule' : 'Add Zone Rule') @section('breadcrumb') Zone Rules / {{ isset($zoneRule) ? 'Edit' : 'Add' }} @endsection @section('content')
@csrf @if(isset($zoneRule)) @method('PUT') @endif
{{-- Section: Zone + City --}}
1. Zone Identification
Which zone and city does this rule apply to?
@error('zone_id')
{{ $message }}
@enderror
@error('city_id')
{{ $message }}
@enderror
{{-- Section: Road Width --}}
2. Road Width Range
Rules apply when the plot's abutting road falls within this range
{{-- Section: Building Parameters --}}
3. Building Parameters
Core development control values: FAR, height, coverage, parking
@error('max_far')
{{ $message }}
@enderror
Decimal (0.40 = 40%)
{{-- Section: Height Rule --}}
4. Height Calculation Rule
Fixed = uses Max Height above. Road-Width Based = height computed from road width × multiplier
@error('height_rule_type')
{{ $message }}
@enderror Road-Width Based: height = road_width × multiplier + setback bonus
Height = road_width × this
Extra m height per m additional setback
Floor for calculated height
Hard cap on calculated height
{{-- Section: Setbacks --}}
5. Setbacks (metres)
Minimum distance from plot boundary to building
{{-- Section: Metadata --}}
6. Source & Notes
Reference the DCR/UDCPR document and section
Cancel
@endsection