@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 --}}
@forelse($NetPlanning ?? [] as $planning) @empty @endforelse
# District Block Panchayat Village M.W - Code Present Land Use F.Size Action
{{ $NetPlanning->firstItem() + $loop->index }} {{ $planning->district->name?? '-' }} {{ $planning->block->name ?? '-' }} {{ $planning->panchayat->name ?? '-' }} {{ $planning->village->name ?? '-' }} {{ $planning->micro_watershed_code ?? '-' }} {{ $planning->present_land_use ?? '-' }} {{ $planning->category ?? '-' }} Show Add
@csrf @method('DELETE')
No records found.
{{-- Pagination --}}
{{ $NetPlanning->links() ?? '' }}
{{-- AJAX Scripts --}} @endsection