@extends('layouts.main') @section('main-container')
{{-- Page Header --}} {{-- Success Message --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Search Form --}}
{{-- District --}}
{{-- Block --}}
{{-- Panchayat --}}
{{-- Village --}}
{{-- Watershed Code (Multiple codes possible) --}}
{{-- Buttons --}}
{{-- Table --}}
State {{-- Data will come from controller --}} @forelse($householdSurveys ?? [] as $survey) @empty @endforelse
# State District Block Watetshed Name Watershed Code Action
{{ $loop->iteration }} {{ $survey->state ?? '-' }} {{ $survey->district_name }} {{ $survey->block_name }} {{ $survey->watershed_name ?? '-' }} {{ $survey->micro_watershed_code ?? '-' }} @if(!empty($survey->netPlanningExists)) {{-- check if Net Planning data exists --}} Added @else Add @endif Show
@csrf @method('DELETE')
No records found.
{{-- Pagination --}}
{{-- AJAX Scripts --}} @endsection