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

WATER STORAGE TANK DATASET

@endsection @section('content')
@foreach($wstData as $index => $wst) @endforeach
SR. Zone/Unit Division District Tehsil Type of Structure Coordinates Beneficary Name Storage Capacity (Gallon) Commencement Date Completion Date Status
{{ $index + 1 }} {{ $wst->zone_name }} {{ $wst->division_name }} {{ $wst->district_name }} {{ $wst->tehsil_name }} {{ $wst->type_of_structure }} {{ $wst->coordinates }} {{ $wst->president_name }} {{ $wst->storage_capacity_m3 }} {{ $wst->Commencement_date ?? '' }} {{ $wst->completion_date }} {{ $wst->status }}
@endsection @section('scripts') @vite('resources/js/pages/wst_dataset.js') @endsection