{{-- ================= LOCATIONS ================= --}}
Locations
| # |
Panchayat |
Village |
@forelse($micro->locations as $index => $loc)
| {{ $index + 1 }} |
{{ $loc->panchayat->name ?? '-' }} |
{{ $loc->village->name ?? '-' }} |
@empty
| No locations found |
@endforelse
{{-- ================= LULC ================= --}}
Land Use (LULC)
| Category |
Area |
% |
@forelse($micro->microWatershedLulcs as $lulc)
|
{{ $lulc->lulcCategory->category_name ?? '-' }}
|
{{ number_format($lulc->area, 2) }}
|
{{ number_format($lulc->area_percentage, 2) }} %
|
@empty
|
No LULC data available
|
@endforelse