@extends('layouts.app') @section('dashboard-title')

WATERCOURSES - DATASET

@endsection @section('content')
@foreach($wcData as $index => $wc) @endforeach
SR. Zone Division District Tehsil Scheme Name Irrigation Source Coordinate Total Length (meters) Sanction Lining Length (meters) Executed Lining Length (meters) Commence ment Date Complet ion Date Status
{{ $index + 1 }} {{ $wc->zone_name }} {{ $wc->division_name }} {{ $wc->district_name }} {{ $wc->tehsil_name }} {{ $wc->scheme_name }} {{ $wc->irrigation_type }} {{ $wc->coordinates }} {{ $wc->total_length }} {{ $wc->sanction_lining_length ?? '-'}} {{ $wc->lining_length }} {{ $wc->commencement_date ?? '-'}} {{ $wc->completion_date ?? '-' }} {{ $wc->status }}
@endsection @section('scripts') @vite('resources/js/pages/watercourses_dataset.js') @endsection