@extends('admin.layouts.adminApp') @section('style') @endsection @section('content') @php $floorData = json_decode($property->floorData); if(!is_array($floorData)) $floorData = json_decode($floorData); @endphp
Basic Details
Assessment Year {{ $property->period }} ULB Name/Code {{ $property->ulbNameCode }} E-Nagar Panchayat Id {{ $property->nagarpalikaId }}
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 }} {{ $property->isSlum == 'Yes' ? 'Slum ID : '.$property->slumId : ''}}
Owner Details
Name of the Respondent: {{ $property->respondentName }} Relationship of Respondent with Owner : {{ $property->respondentRelationData?->name }} Aadhar No : {{ $property->ownerAadhaarNumber }} @if(!empty($property->ownerAadhaarNumber))
Current file: View PDF @endif
Number of Famliy Members : {{ $property->number_of_members }}
@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->taxRateZoneData?->name ?? '-' }} Property Ownership : {{ $property->propertyOwnershipData?->name ?? '-' }} Situation : {{ $property->situationData?->name ?? '-' }}
Property Type : {{ $property->propertyTypeData?->type_name }} Property Use : {{ $property->propertyUseData?->name ?? '-' }} Road Type : {{ $property->roadTypeData?->name ?? '-' }}
Year of Construction : {{ $property->yearOfConstructionData?->name ?? '-' }}
Floor Details
Plot Area : {{ number_format($property->plotAreaSqFt, 2) }} SqFt /{{ number_format( $property->plotAreaSqMeter, 2) }} SqMeter Plinth Area : {{ number_format($property->plinthAreaSqFt, 2) }} SqFt /{{ number_format($property->plinthAreaSqMeter, 2) }} SqMeter Total Built-Up Area : {{ number_format($property->totalBuiltUpAreaSqFt, 2) }} SqFt /{{ number_format( $property->totalBuiltUpAreaSqMeter, 2) }} SqMeter
@foreach( $floorData as $k=>$floor) @endforeach
Floor Type Area (Sq Ft) Area (Sq Meter) Usage Type Usage Factor Construction Type
{{ floorType($floor->floorType, $allInOne['floorType']) }} {{ $floor->areaSqFt }} SqFt {{ $floor->areaSqMt }} SqM {{ usageType($floor->usageType, $allInOne['propertyType']) }} {{ usageFactors($floor->usageFactor, $allInOne['usagsFactor']) }} {{ yearOfConstructions($floor->constructionType, $allInOne['natureOfConstruction']) }}
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 ?? '' }} {{ usageType($connection->connectionType, $allInOne['propertyType']) }}
Source of Water : {{ $property->sourceOfWaterData?->name }}
Toilet Type : {{ $property->toiletTypeData?->name }}
Property Location/Image
Latitude/longitude Map Property First Image Property Second Image Aadhar Image Owner Image
Latitude : {{ $property->latitude }}
Property Image 1 Property Image 2 @if($property->aadhaarPhoto) Property Image 2 @endif @if($property->ownerImage) Property Image 2 @endif
longitude : {{ $property->longitude }}
@endsection @section('script') @endsection