@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. संपत्ति मालिक की जानकारी
(Property Owner Information)
@foreach((is_array($property->ownerDetails)? $property->ownerDetails : json_decode($property->ownerDetails)) as $k => $owner) @endforeach
क्रमांक
(S. No.)
संपत्ति करदाता का नाम
(Property Taxpayer Name)
पिता/पति
(Father/Husband)
संपत्ति मालिक का मोबाइल नंबर
(Mobile Number)
ईमेल
(Email)
अतिरिक्त मोबाइल नंबर
(Alternate Mobile)
{{ $k + 1 }} {{ $owner->name ?? '-' }} {{ $owner->fatherName ?? '-' }} {{ $owner->mobile ?? '-' }} {{ $owner->email ?? '-' }} {{ $owner->secondaryPhone ?? '-' }}
पता :-
(Address)
{{ $property->houseNo }} {{ $property->streetNoName }} {{ $property->locality }} {{ $property->colony }} {{ $property->city }} {{ $property->pincode }}
निकाय में पंजीकृत संपत्ति कर क्रमांक, संपत्ति स्वामी का नाम तथा संपत्ति का क्षेत्रफल
(Registered Property Tax No., Owner Name, and Area)
संपत्ति का उपयोग (आवासीय / व्यावसायिक / दोनों )
(Property Use – Residential / Commercial / Both) :- {{ $property->propertyUse=='Other'? $property->propertyOther.'('.$property->propertyUse .')' : $property->property_use->name }}
निर्मित क्षेत्रफल
(Built-up Area) :- {{ $property->totalBuiltUpAreaSqFt }} SqFt / {{ $property->totalBuiltUpAreaSqMeter }} SqMeter

3. सम्पत्ति कर गणना हेतु जानकारी
(Information for Property Tax Calculation)
संपत्ति का स्वामित्व
(Ownership Type)
{{ $property->propertyOwnership == 'Other' ? $property->propertyOwnershipOther . ' (' . $property->propertyOwnership . ')' : $property->property_ownership->name }} संपत्ति का स्थान (मुख्य मार्ग / मुख्य बाजार / अन्य)
(Property Location – Main Road / Market / Other)
{{ $property->roadType == 'Other' ? $property->roadTypeOther . ' (' . $property->roadType . ')' : $property->roadType }}
संपत्ति का उपयोग (किराये पर / स्वयं उपयोग / दोनों)
(Property Use – Rented / Self / Both)
{{ $property->propertyUse == 'Other' ? $property->propertyOther . ' (' . $property->propertyUse . ')' : $property->property_use->name }} निर्माण का वर्ष
(Year of Construction)
{{ $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 Area Information)
भूमि / प्लाट का क्षेत्रफल
(Land / Plot Area)
(वर्ग फीट में / In SqFt)
{{ $property->plotAreaSqFt }} SqFt / {{ $property->plotAreaSqMeter }} SqMeter प्लिथ क्षेत्रफल
(Plinth Area)
(वर्ग फीट में / In SqFt)
{{ reset($plinth) ?? $property->plinthAreaSqFt }} SqFt / {{ number_format(reset($plinthSm), 2) ?? $property->plinthAreaSqMeter }} SqMeter
संपत्ति का कुल निर्माण / निर्मित क्षेत्रफल
(Total Built-up Area)
{{ number_format($totalPlinth, 2) ?? $property->totalBuiltUpAreaSqFt }} SqFt / {{ number_format($totalPlinthSm, 2) ?? $property->totalBuiltUpAreaSqMeter }} SqMeter Lat/Long
(Latitude / Longitude)
{{ $property->latitude }} / {{ $property->longitude }}
@php $tt = array_fill(1, 14, 0); $floorData = json_decode($property->floorData); if (!is_array($floorData)) $floorData = json_decode($floorData); @endphp @foreach($floorData as $floor) @php $t = array_fill(1, 14, 0); $type = $floor->constructionType; $usage = in_array($floor->usageType, [1, 5]) ? 1 : 2; $factor = in_array($floor->usageFactor, [1, 'Other']) ? 1 : 2; $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]], // कच्चा 4 => [1 => [1 => 5, 2 => 6], 2 => [1 => 7, 2 => 8]], // Teen 5 => [1 => [1 => 13, 2 => 13], 2 => [1 => 13, 2 => 13]], // आंशिक पक्का 'Other' => [1 => [1 => 5, 2 => 6], 2 => [1 => 7, 2 => 8]], // आंशिक पक्का ]; $index = $indexMap[$type][$usage][$factor]; if($property->propertyUse!=5) $t[$index] = $area; else $t[13] = $property->plotAreaSqFt ; $tt[$index] += $area; $t[14] = array_sum($t); $tt[14] += $t[14]; @endphp @for($i = 1; $i <= 14; $i++) @endfor @endforeach @for($i = 1; $i <= 14; $i++) @endfor
संपत्ति के निर्मित क्षेत्रफल का विवरण / Details of Constructed Area of the Property
तल फ्लोर / Floor पक्का / Pucca आंशिक पक्का / Semi-Pucca कच्चा / Kachcha खुली भूमि / Open Land योग / Total
आवासीय / Residential व्यावसायिक / Commercial आवासीय / Residential व्यावसायिक / Commercial आवासीय / Residential व्यावसायिक / Commercial
स्वयं के उपयोग में / Self-use किराये पर / Rented स्वयं के उपयोग में / Self-use किराये पर / Rented स्वयं के उपयोग में / Self-use किराये पर / Rented स्वयं के उपयोग में / Self-use किराये पर / Rented स्वयं के उपयोग में / Self-use किराये पर / Rented स्वयं के उपयोग में / Self-use किराये पर / Rented
@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