@extends('layouts.webhome') @section('content')
1. संपत्ति की सामान्य जानकारी
(General Property Information)
संपत्ति का परिक्षेत्र
(Property Tax Zone)
{{ $property->taxRateZone == 'Other' ? $property->taxRateZoneOther . ' (' . $property->taxRateZone . ')' : $property->tax_rate_zone->name }} वार्ड
(Ward)
{{ $property->ward->name }}
जी आई एस एवं पार्सल न०
(GIS & Parcel No.)
{{ $property->parcelNo }} यूनिक आईडी
(Unique ID)
{{ $property->nagarpalikaId }}
संपत्ति संख्या
(Property Number)
{{ $property->propertyNo }} बिजली बिल क्रमांक
(Electricity Bill Number)
{{ $property->electricityId }}
खसरा क्रमांक
(Khasra Number)
{{ $property->khasraNo }} संपत्ति का प्रकार
(Property Type)
{{ $property->propertyUse == 'Other' ? $property->propertyUseOther . ' (' . $property->propertyUse . ')' : $property->property_use->name }}
2. संपत्ति मालिक की जानकारी
@foreach((is_array($property->ownerDetails)? $property->ownerDetails : json_decode($property->ownerDetails)) as $k => $owner) @endforeach
क्रमांक संपत्ति करदाता का नाम पिता/पति संपत्ति मालिक का मोबाइल नंबर ईमेल अतिरिक्त मोबाइल नंबर
{{ $k + 1 }} {{ $owner->name ?? '-' }} {{ $owner->fatherName ?? '-' }} {{ $owner->mobile ?? '-' }} {{ $owner->email ?? '-' }} {{ $owner->secondaryPhone ?? '-' }}
पता :- {{ $property->houseNo }} {{ $property->streetNoName }} {{ $property->locality }} {{ $property->colony }} {{ $property->city }} {{ $property->pincode }}
निकाय में पंजीकृत संपत्ति कर क्रमांक, संपत्ति स्वामी का नाम तथा संपत्ति का क्षेत्रफल
संपत्ति का उपयोग (आवासीय / व्यावसायिक / दोनों ) :- {{ $property->propertyUse=='Other'? $property->propertyOther.'('.$property->propertyUse .')' : $property->property_use->name }} निर्मित क्षेत्रफल :- {{ $property->totalBuiltUpAreaSqFt }} SqFt /{{ $property->totalBuiltUpAreaSqMeter }} SqMeter
3. सम्पत्ति कर गणना हेतु जानकारी
संपत्ति का स्वामित्व {{ $property->propertyOwnership == 'Other' ? $property->propertyOwnershipOther . ' (' . $property->propertyOwnership . ')' : $property->property_ownership->name }} संपत्ति का स्थान (मुख्य मार्ग / मुख्या बाजार / अन्य) {{ $property->roadType == 'Other' ? $property->roadTypeOther . ' (' . $property->roadType . ')' : $property->roadType }}
संपत्ति का उपयोग (किराये पर / स्वयं उपयोग / दोनों) {{ $property->propertyUse == 'Other' ? $property->propertyOther . ' (' . $property->propertyUse . ')' : $property->property_use->name }} निर्माण का वर्ष {{ $property->yearOfConstruction == 'Other' ? $property->yearOfConstructionOther . ' (' . $property->yearOfConstruction . ')' : $property->year_of_construction->name }}
@php $floorData = json_decode($property->floorData); if (!is_array($floorData)) { $floorData = json_decode($floorData); } $plinth = []; $plinthSm = []; if($property->propertyUse!=5) { 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
4. संपत्ति के क्षेत्रफल की जानकारी
भूमि / प्लाट का क्षेत्रफल (वर्ग फ़ीट में ) {{ $property->plotAreaSqFt }} SqFt / {{ $property->plotAreaSqMeter }} SqMeter प्लिथ क्षेत्रफल (वर्ग फ़ीट में ) {{ reset($plinth) ?? $property->plinthAreaSqFt }} SqFt / {{ number_format(reset($plinthSm), 2) ?? $property->plinthAreaSqMeter }} SqMeter
संपत्ति का कुल निर्माण / निर्मित क्षेत्रफल {{ number_format($totalPlinth, 2) ?? $property->totalBuiltUpAreaSqFt }} SqFt / {{ number_format($totalPlinthSm, 2) ?? $property->totalBuiltUpAreaSqMeter }} SqMeter Lat/Long {{ $property->latitude }} / {{ $property->longitude }}
@php $tt = array_fill(1, 13, 0); $floorData = json_decode($property->floorData); if (!is_array($floorData)) $floorData = json_decode($floorData); @endphp @foreach($floorData as $floor) @php $t = array_fill(1, 13, 0); $type = $floor->constructionType; $usage = $floor->usageType==1 ? 1:2; $factor = $floor->usageFactor; $area = $floor->areaSqFt; $indexMap = [ 1 => [1 => [1 => 1, 2 => 2], 2 => [1 => 3, 2 => 4]], // पक्का 2 => [1 => [1 => 5, 2 => 6], 2 => [1 => 7, 2 => 8]], // आंशिक पक्का 3 => [1 => [1 => 9, 2 => 10], 2 => [1 => 11, 2 => 12]], // कच्चा ]; if($property->propertyUse!=5) { $index = $indexMap[$type][$usage][$factor]; $t[$index] = $area; $tt[$index] += $area; } $t[13] = array_sum($t); $tt[13] += $t[13]; @endphp @for($i = 1; $i <= 13; $i++) @endfor @endforeach @for($i = 1; $i <= 13; $i++) @endfor
संपत्ति के निर्मित क्षेत्रफल का विवरण
तल फ्लोर पक्का आंशिक पक्का कच्चा योग
आवासीय व्यावसायिक आवासीय व्यावसायिक आवासीय व्यावसायिक
स्वयं के उपयोग में किराये पर स्वयं के उपयोग में किराये पर स्वयं के उपयोग में किराये पर स्वयं के उपयोग में किराये पर स्वयं के उपयोग में किराये पर स्वयं के उपयोग में किराये पर
@if($property->propertyUse!=5) {{ $floor->floorType == 'Other' ? $floor->floorTypeOther . ' (' . $floor->floorType . ')' : floorType($floor->floorType, $floors) }} @else {{ $property->property_use->name }} @endif {{ $t[$i] }}
योग{{ $tt[$i] }}
@if($property->isMuncipalWaterSupply =='yes') @endif
5. जल आपूर्ति कनेक्शन
नगर पंचायत द्वारा जल आपूर्ति कनेक्शन दिया गया है या नहीं {{ $property->isMuncipalWaterSupply }}
@foreach((is_array($property->waterConnectionId)? $property->waterConnectionId : json_decode($property->waterConnectionId)) as $k=>$connection) @endforeach
क्रमांक जल आपूर्ति कनेक्शन क्रमांक व् व्यास
{{ $k+1 }} {{ $connection->id ?? '' }} @if($connection->connectionType=='Other')? {{ $connection->connectionTypeOther.'('.$connection->connectionType .')' }} @else @foreach(usageType() as $usageType ) @if($usageType->id==$connection->connectionType) {{ $usageType->type_name}} @endif @endforeach @endif
जल आपूर्ति कनेक्शन के उपयोग के प्रकार एवं शुल्क {{ $property->isMuncipalWasteService }} - {{ $property->isMuncipalWasteService }}



@endsection @section('script') @endsection