@php use App\Models\Ward; use App\Models\User; $wards = Ward::all(); $users = User::all(); @endphp @extends('admin.layouts.adminApp') @section('style') @endsection @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Property Surveyors List
Filter Data
@php use App\Models\FloorType; $floorTypes = FloorType::all(); // Pass this from controller if needed $usageTypes = ['Residential', 'Non-Residential']; $constructionTypes = [ //'Pakka Building with R.C.C Roof or R.B. Roof', //'Tin Sheet', //'Kaccha Building that is all other building not covered in (i) & (ii)' 1,3,4 ]; // Prepare alias mapping for construction types $constructionAliases = []; foreach ($constructionTypes as $type) { if ($type==1 || stripos($type, 'r.c.c') !== false || stripos($type, 'r.b.') !== false) { $alias = 'RCC'; } elseif ( $type==4 || $type==4 || stripos($type, 'tin') !== false) { $alias = 'Tin Sheet'; } elseif ( $type==3 || stripos($type, 'kaccha') !== false || stripos($type, 'covered') !== false) { $alias = 'KACCHA'; } elseif ( $type==2 || stripos($type, 'kaccha') !== false || stripos($type, 'covered') !== false) { $alias = 'Other'; } else { $alias = strtoupper(str_replace(' ', '_', trim($type))); } $constructionAliases[$type] = $alias; } @endphp {{-- MAIN HEADERS --}} {{-- Floors dynamic --}} {{-- Floor Levels --}} @foreach ($floorTypes as $floor) @endforeach {{-- Usage Types --}} @foreach ($floorTypes as $floor) @foreach ($usageTypes as $usage) @endforeach @endforeach {{-- Construction Types --}} @foreach ($floorTypes as $floor) @foreach ($usageTypes as $usage) @foreach ($constructionTypes as $type) @endforeach @endforeach @endforeach
SN Actions Survey Id Date of Survey Owner Name Owner Father Name Mobile No Ward Name Is Slum Parcel No Property No Electricity ID Khasra No Registry No Constructed Date Respondent Name Respondent Relationship Owner Aadhaar Number City Pincode House No Street Name Locality Colony Present House No Present Street Name Present Locality Present Colony Present City Present Pincode Is Same As Property Tax Rate Zone Property Ownership Property Use Commercial Year of Construction Exemption Type Exemption Applicable Situation Road TypeFloors Plot Area SqFt Plot Area SqMeter Plinth Area SqFt Plinth Area SqMeter Total Built Up Area SqFt Total Built Up Area SqMeter Is Muncipal Water Supply Total Water Connection Water Connection Id/Type Toilet Type Is Muncipal Waste Service Source of Water latitude longitude
{{ $floor->name }}
{{ $usage }}
{{ $constructionAliases[$type] }}
@endsection @section('script') @endsection