@extends('layouts.main') @section('main-container')
{{-- Page Header --}} {{-- Details Card --}}
{{-- LEFT COLUMN: Geographical / Identification --}}
Micro Watershed Code: {{ $household->micro_watershed_code ?? '-' }}
District: {{ $household->district->name ?? '-' }}
Block: {{ $household->block->name ?? '-' }}
Panchayat: {{ $household->panchayat->name ?? '-' }}
Village: {{ $household->village->name ?? '-' }}
Farmer Name: {{ $household->farmer_name ?? '-' }}
Plot No: {{ $household->plot_no ?? '-' }}
Area (Acre): {{ $household->area_acre ?? '-' }}
Latitude: {{ $household->lat ?? '-' }}
Longitude: {{ $household->long ?? '-' }}
Slope %: {{ $household->slope_percent ?? '-' }}
{{-- RIGHT COLUMN: Soil / Land Use / Treatments --}}
Depth of Soil: {{ $household->depth_of_soil ?? '-' }}
Texture Class: {{ $household->texture_class ?? '-' }}
Erodibility Class: {{ $household->erodibility_class ?? '-' }}
Land Class: {{ $household->land_class ?? '-' }}
Present Land Use: {{ $household->present_land_use ?? '-' }}
Proposed Land Use: {{ $household->proposed_land_use ?? '-' }}
{{-- Existing Treatment --}}
Existing Treatment
Type: {{ $household->existing_physical_type ?? '-' }}
Length: {{ $household->existing_physical_length ?? '-' }}
Cross Section: {{ $household->existing_physical_cs ?? '-' }}
Plant Name: {{ $household->existing_plant_name ?? '-' }}
No. of Plants: {{ $household->existing_no_of_plants ?? '-' }}
{{-- Proposed Treatment --}}
Proposed Treatment
Type: {{ $household->proposed_physical_type ?? '-' }}
Length: {{ $household->proposed_physical_length ?? '-' }}
Cross Section: {{ $household->proposed_physical_cs ?? '-' }}
Plant Name: {{ $household->proposed_plant_name ?? '-' }}
No. of Plants: {{ $household->proposed_no_of_plants ?? '-' }}
{{-- Remark --}}
Remark: {{ $household->remark ?? '-' }}
@endsection