@extends('layouts.main') @section('main-container')
{{-- Page Header --}} {{-- Success Message --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Table --}}
@forelse ($watersheds as $index => $ws) {{-- Watershed Name --}} {{-- Village --}} {{-- Block --}} {{-- District --}} {{-- River Basin --}} {{-- Watershed Code --}} {{-- Action --}} @empty @endforelse
# Watershed Name Block District River Basin Watershed Code Action
{{ $watersheds->firstItem() + $index }} {{ $ws->watershed_name }}{{ $ws->block->name ?? '-' }}{{ $ws->district->name ?? '-' }}{{ $ws->river_basin_system ?? '-' }}{{ $ws->watershed_code ?? '-' }} View Edit Add Climate
No watershed records found
{{-- Pagination --}}
{{ $watersheds->links() }}
@endsection