@extends('layouts.main') @section('main-container')
Surveys List
@foreach($surveyData as $index => $survey) @endforeach
SL.NO# District Block Watershed Name Micro Watershed Code Plots
{{ $loop->iteration }} {{ $survey->district_id ?? '-' }} {{ $survey->block_id ?? '-' }} {{ $survey->watershed_name ?? '-' }} {{ $survey->micro_watershed_code ?? '-' }} @foreach($survey->plots as $index => $plot) {{ $plot->plot_no }} @endforeach
@endsection