@extends('admin.layouts.app') @section('title', 'Zoning Rules') @section('breadcrumb') Zoning Rules @endsection @section('content')
Zone Configurations
@forelse($zones as $zone) @empty @endforelse
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' }}
@csrf @method('DELETE')
No zone rules configured
{{ $zones->links('vendor.pagination.admin') }}
@endsection