Site Visit Details #{{ $siteVisit->sr_no ?? $siteVisit->id }}
Sr. No. {{ $siteVisit->sr_no ?? '-' }}
Work Order {{ $siteVisit->work_order_id ?? '-' }}
Client Name {{ $siteVisit->client_name ?? '-' }}
Trans Co {{ $siteVisit->trans_co ?? '-' }}
Project Name {{ $siteVisit->project_name ?? '-' }}
POC Name {{ $siteVisit->poc_name ?? '-' }}
Name of Line {{ $siteVisit->line_name ?? '-' }}
GETCO Circle / Division {{ implode(' / ', array_filter([$siteVisit->getco_circle, $siteVisit->getco_division])) ?: '-' }}
Created By {{ $siteVisit->creator?->name ?? 'System' }}
Inspection Date {{ $siteVisit->inspection_date ? $siteVisit->inspection_date->format('d-m-Y') : '-' }}
Tower Number {{ $siteVisit->tower_number ?? '-' }}
Owner Name {{ $siteVisit->owner_name ?? '-' }}
Survey Number {{ $siteVisit->survey_number ?? '-' }}
Village / Taluka / District {{ implode(', ', array_filter([$siteVisit->village, $siteVisit->taluka, $siteVisit->district])) ?: '-' }}
Road Distance {{ $siteVisit->road_distance ?? '-' }}
Coordinates (Lat, Long) @if($siteVisit->latitude || $siteVisit->longitude) {{ $siteVisit->latitude ?? '-' }}, {{ $siteVisit->longitude ?? '-' }} @if($siteVisit->latitude && $siteVisit->longitude) View on Map → @endif @else - @endif
Boundary Wall Type {{ $siteVisit->boundary_wall_type ?? '-' }}
Land Type {{ $siteVisit->land_type ?? '-' }}
Land in Question {{ $siteVisit->land_in_question ?? '-' }}
Appointed By {{ $siteVisit->appointed_by ?? '-' }}
Market Rate Unit {{ $siteVisit->market_rate ?? '-' }}
Guideline Rate {{ $siteVisit->guideline_rate ?? '-' }}
Market Rate per Sq.Meter {{ $siteVisit->market_rate_per_sqm ?? '-' }}
Percentage Details @if(!empty($siteVisit->percentage_details) && is_array($siteVisit->percentage_details))
@foreach($siteVisit->percentage_details as $item) @if(!empty($item['name']) || (isset($item['value']) && $item['value'] !== '')) {{ $item['name'] ?? 'Item' }}: {{ $item['value'] ?? '0' }}% @endif @endforeach
@else - @endif
Reference {{ $siteVisit->reference ?? '-' }}
Remarks {{ $siteVisit->remarks ?? '-' }}
Created At {{ $siteVisit->created_at ? $siteVisit->created_at->format('d-m-Y h:i A') : '-' }}
Site Pictures Gallery {{ count($siteVisit->pictures_array) }} Picture(s)
@if(!empty($siteVisit->pictures_array))
@foreach($siteVisit->pictures_array as $index => $imgPath) @endforeach
@else
No pictures uploaded.
@endif