@extends('admin.layouts.app') @section('title', 'Zoning Rules') @section('breadcrumb') Zoning Rules @endsection @section('content')
Manage FAR, FSI, setback and land use zone configurations
| Zone Name | State | Zone Type | FAR / FSI | Max Height | Front Setback | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $zone->name }} | {{ $zone->state?->code ?? '—' }} | @php $typeColors = ['Residential'=>'badge-blue','Commercial'=>'badge-orange','Industrial'=>'badge-red','Mixed'=>'badge-purple','Agricultural'=>'badge-green']; @endphp {{ $zone->zone_type }} | {{ $zone->far_fsi ?? '—' }} | {{ $zone->max_height_m ? $zone->max_height_m.'m' : '—' }} | {{ $zone->front_setback_m ? $zone->front_setback_m.'m' : '—' }} | {{ $zone->is_active ? 'Active' : 'Inactive' }} | |
| No zone rules configured | |||||||