Property Surveyors Info

Basic Details
E-Nagar Panchayat Id {{ $property->nagarpalikaId }} Property ID {{ $property->id }} ULB Name/Code {{ $property->ulbNameCode }}
Ward Number {{ $property->ward->name ?? '' }} Parcel No. {{ $property->parcelNo }} Property No./Unit No. {{ $property->propertyNo }}
Electricity Id. {{ $property->electricityId }} Khasra No. {{ $property->khasraNo }} Registry No. {{ $property->registryNo }}
Construction Date {{ $property->constructedDate }} Latitude / Longitude {{ $property->latitude }} / {{ $property->longitude }} Slum Status {{ $property->isSlum }}
Owner Details
Name of the Respondent: {{ $property->respondentName }} Relationship of Respondent with Owner : {{ $property->respondentRelationship=='Other'? $property->respondentRelationshipOther.'('.$property->respondentRelationship .')' : $property->respondentRelationship }} Aadhar No : {{ $property->ownerAadhaarNumber }}
@foreach((is_array($property->ownerDetails)? $property->ownerDetails : json_decode($property->ownerDetails)) as $k=>$owner) @endforeach
SN Owner Name Father/Husband Name Mobile Email Secondary Mobile
{{ $k+1 }} {{ $owner->name ?? '' }} {{ $owner->fatherName ?? '' }} {{ $owner->mobile ?? '' }} {{ $owner->email ?? '' }} {{ $owner->secondaryPhone ?? '' }}
Address Details
Address : {{ $property->houseNo }} {{ $property->streetNoName }} {{ $property->locality }} {{ $property->colony }} {{ $property->city }} {{ $property->pincode }}
Present Address : {{ $property->presentHouseNo }} {{ $property->presentStreetNoName }} {{ $property->presentLocality }} {{ $property->presentColony }} {{ $property->presentCity }} {{ $property->presentPincode }}
Taxation Details/General Details of the Property
Current Tax Rate : {{ $property->taxRateZone=='Other'? $property->taxRateZoneOther.'('.$property->taxRateZone .')' : $property->tax_rate_zone->name }} Property Ownership : {{ $property->propertyOwnership=='Other'? $property->propertyOwnershipOther.'('.$property->propertyOwnership .')' : $property->property_ownership->name }} Sitution : {{ $property->situation=='Other'? $property->situationOther.'('.$property->situation .')' : $property->situation->name ?? '' }}
Property Use : {{ $property->propertyUse=='Other'? $property->propertyOther.'('.$property->propertyUse .')' : $property->property_use->name }} Commercial : {{ $property->commercial=='Other'? $property->commercialOther.'('.$property->commercial .')' : $property->commercial->name ?? '' }} Year of Construction : {{ $property->yearOfConstruction=='Other'? $property->yearOfConstructionOther.'('.$property->yearOfConstruction .')' : $property->year_of_construction->name }}
Exemption Applicable : {{ $property->isExemptionApplicable=='no' ? 'No' : ( $property->exemptionType=='Other'? $property->exemptionTypeOther.'('.$property->exemptionType .')' : $property->exemption_type->name ) }}
Floor Details
@php $floorData = json_decode($property->floorData); if (!is_array($floorData)) { $floorData = json_decode($floorData); } $plinth = []; $plinthSm = []; foreach ($floorData as $floor) { $type = $floor->floorType; $area = $floor->areaSqFt ?? 0; $areaSm = $floor->areaSqMt ?? 0; if (!isset($plinth[$type])) { $plinth[$type] = 0; $plinthSm[$type] = 0; } $plinth[$type] += $area; $plinthSm[$type] += $areaSm; } // ✅ Total plinth area $totalPlinth = array_sum($plinth); $totalPlinthSm = array_sum($plinthSm); // ✅ Format to two decimal places // echo "Total Plinth (SqFt): " . number_format($totalPlinth, 2) . "
"; // echo "Total Plinth (SqMt): " . number_format($totalPlinthSm, 2); //print_r($plinth); //echo reset($plinth); //echo reset($plinthSm); @endphp
Plot Area : {{ $property->plotAreaSqFt }} SqFt /{{ $property->plotAreaSqMeter }} SqMeter Plinth Area : {{ reset($plinth) ?? $property->plinthAreaSqFt }} SqFt /{{ reset($plinthSm) ?? $property->plinthAreaSqMeter }} SqMeter Total Built-Up Area : {{ number_format($totalPlinth, 2) ?? $property->totalBuiltUpAreaSqFt }} SqFt /{{ number_format($totalPlinthSm, 2) ?? $property->totalBuiltUpAreaSqMeter }} SqMeter
@php // Define the helper functions in the Blade view or a helper file function floorType($floorType, $floors) { $floorId = (int) $floorType; $floor = collect($floors)->firstWhere('id', $floorId); return $floor ? $floor->name : '-'; } function usageType($usageType, $floorUsageType) { $usageTypeId = (int) $usageType; $type = collect($floorUsageType)->firstWhere('id', $usageTypeId); return $type ? $type->type_name : '-'; } function usageFactors($usageFactor, $usagsFactors) { $usageFactorId = (int) $usageFactor; $factor = collect($usagsFactors)->firstWhere('id', $usageFactorId); return $factor ? $factor->name : '-'; } function yearOfConstructions($constructionType, $yearOfConstructions) { $constructionTypeId = (int) $constructionType; $type = collect($yearOfConstructions)->firstWhere('id', $constructionTypeId); return $type ? $type->name : '-'; } $floorData = json_decode($property->floorData); if(!is_array($floorData)) $floorData = json_decode($floorData); @endphp @foreach( $floorData as $k=>$floor) @endforeach
Floor Type Area (Sq Ft) Area (Sq Meter) Usage Type Usage Factor Construction Type
{{ $floor->floorType == 'Other' ? $floor->floorTypeOther . ' (' . $floor->floorType . ')' : floorType($floor->floorType, $floors) }} {{ $floor->areaSqFt }} SqFt {{ $floor->areaSqMt }} SqM {{ $floor->usageType == 'Other' ? $floor->usageTypeOther . ' (' . $floor->usageType . ')' : usageType($floor->usageType, $floorUsageType) }} {{ $floor->usageFactor == 'Other' ? $floor->usageFactorOther . ' (' . $floor->usageFactor . ')' : usageFactors($floor->usageFactor, $usagsFactors) }} {{ $floor->constructionType == 'Other' ? $floor->constructionTypeOther . ' (' . $floor->constructionType . ')' : yearOfConstructions($floor->constructionType, $natureOfConstructionLists) }}
Muncipal Town Supply
@if($property->isMuncipalWaterSupply=='yes') @endif
Muncipal Water Supply Connection : {{ $property->isMuncipalWaterSupply }}
Water Connection @foreach((is_array($property->waterConnectionId)? $property->waterConnectionId : json_decode($property->waterConnectionId)) as $k=>$connection) @endforeach
SN Connection Id Connection Type
{{ $k+1 }} {{ $connection->id ?? '' }} {{ $connection->waterConnectionType=='Other'? $connection->connectionTypeOther.'('.$connection->waterConnectionType .')' : $connection->waterConnectionType }}
Source of Water : {{ $property->sourceOfWater=='Other'? $property->sourceOfWaterOther.'('.$property->sourceOfWater .')' : $property->sourceOfWater }}
Toilet Type : {{ $property->toiletType=='Other'? ($property->toiletTypeOther ?? '' ) .'('.$property->toiletType .')' : $property->toiletType }}
Property Location/Image
Latitude : {{ $property->latitude }}
Property Image 1 Property Image 2
longitude : {{ $property->longitude }}