@extends('layouts.main') @section('main-container')
| Project Type | Total Surveys |
|---|---|
| {{ $project->projectType->name }} | {{ $project->total }} |
| No data available | |
| Block | Total Surveys |
|---|---|
| {{ $block->block->name }} | {{ $block->total }} |
| No data available | |
| Financial Year | Total Surveys |
|---|---|
| {{ $year->financialYear->name }} | {{ $year->total }} |
| No data available | |
| Male | Female | Other | Total |
|---|---|---|---|
| {{ $genderWise['male'] ?? 0 }} | {{ $genderWise['female'] ?? 0 }} | {{ $genderWise['other'] ?? 0 }} | {{ array_sum($genderWise) }} |
| SC | ST | OBC | Others | TOTAL |
|---|---|---|---|---|
| {{ $categoryWise['SC'] ?? 0 }} | {{ $categoryWise['ST'] ?? 0 }} | {{ $categoryWise['OBC'] ?? 0 }} | {{ $categoryWise['Others'] ?? 0 }} | {{ array_sum($categoryWise) }} |
| Illiterate | Primary | Matric | Graduate | Others |
|---|---|---|---|---|
| {{ $educationWise['Illiterate'] ?? 0 }} | {{ $educationWise['Primary'] ?? 0 }} | {{ $educationWise['Matric'] ?? 0 }} | {{ $educationWise['Graduate'] ?? 0 }} | {{ $educationWise['Others'] ?? 0 }} |
| Land Type | Total Area (acres) |
|---|---|
| {{ $type }} | {{ number_format($area, 2) }} |
| Total | {{ number_format(array_sum($landTypeWise), 2) }} |
| Irrigation Sources | Total Count |
|---|---|
| {{ $formattedSources }} | {{ $source->total }} |
| Length (m) | Width (m) | Depth/Height (m) | Count |
|---|---|---|---|
| {{ number_format($group->length, 2) }} | {{ number_format($group->width, 2) }} | {{ number_format($group->depth_or_height, 2) }} | {{ $group->total_count }} |
| No data available | |||
| Range | Count |
|---|---|
| 1% - 4% | {{ $landSlopeCounts->slope_1_to_4 }} |
| 4% - 7% | {{ $landSlopeCounts->slope_4_to_7 }} |
| > 7% | {{ $landSlopeCounts->slope_above_7 }} |
| Type | Count |
|---|---|
| Low Land | {{ $geologicalCounts->low_land }} |
| Mid Land | {{ $geologicalCounts->mid_land }} |
| Up Land | {{ $geologicalCounts->up_land }} |
| Zone | Count |
|---|---|
| Discharge Zone | {{ $hydrologicalCounts->discharge }} |
| Transition Zone | {{ $hydrologicalCounts->transition }} |
| Recharge Zone | {{ $hydrologicalCounts->recharge }} |
| Land Area (acres) | potential_irrigation (acres) |
|---|---|
| {{ $land_comment }} | {{ number_format($potential_irrigation, 2) }} |