Village: {{ $postLevel->baseline->village->name ?? '' }}
Panchayat: {{ $postLevel->baseline->panchayat->name ?? '' }}
Block: {{ $postLevel->baseline->block->name ?? '' }}
District: {{ $postLevel->baseline->district->name ?? '' }}
Name of Beneficiary: {{ $postLevel->baseline->name_of_respondent ?? '' }}
Plot No.: {{ $postLevel->baseline->land->plot_khata }}
Measurement Date: {{ \Carbon\Carbon::parse($postLevel->measurement_date)->format('d-m-Y') }}
Pond Size: {{ (int)$postLevel->length }} m x {{ (int)$postLevel->width }} m x {{ (int)$postLevel->height }} m
Latitude: {{ $postLevel->lat }}
Longitude: {{ $postLevel->long }}
| Station |
BS |
IS |
FS |
HI |
RL |
Remarks |
| TBM |
{{ $postLevel->bs }} |
- |
- |
{{ $postLevel->hi }} |
{{ $postLevel->rl }} |
{{ $postLevel->remarks }} |
@foreach ($readingsByLayer as $layer => $readings)
{{-- Layer Label Row --}}
|
@switch($layer)
@case(1) Layer 1 @break
@case(2) Layer 2 @break
@case(3) Layer 3 @break
@case(4) Layer 4 @break
@default Layer {{ $layer }}
@endswitch
|
{{-- Readings Rows --}}
@php $totalRL = 0; @endphp
@foreach ($readings as $reading)
@php $totalRL += $reading->rl; @endphp
| {{ $reading->reading_index }} |
- |
{{ $reading->is }} |
- |
- |
{{ $reading->rl }} |
{{ $reading->remarks }} |
@endforeach
{{-- Average RL Row --}}
| Average RL |
{{ round($totalRL / count($readings), 3) }} |
|
@endforeach
@endsection