@extends('layouts.usermain') @section('main-container')
Existing RWH Structures
+ Add Structure
@if(session('success'))
{{ session('success') }}
@endif
@forelse($structures as $key => $structure) @empty @endforelse
# Watershed Name Watershed Code Village Total Area (Ha) Treatable Area (Ha) Status Action
{{ $structures->firstItem() + $key }} {{ $structure->watershed_name ?? '-' }} {{ $structure->watershed_code ?? '-' }} {{ $structure->village->name ?? '-' }} {{ $structure->total_watershed_area_ha ?? '-' }} {{ $structure->total_treatable_area_ha ?? '-' }} @if($structure->status == 'Active') Active @else Inactive @endif Add View
No Records Found
{{-- Pagination --}}
{{ $structures->links('pagination::bootstrap-5') }}
@endsection