@extends('layouts.app') @section('title','Multi User Dashboard') @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@csrf

Rainfall Data

Download CSV
@foreach($stations as $station) @php $observation = $observations[$station->id] ?? null; @endphp @endforeach
DATE STATION ID STATION NAME LATITUDE LONGITUDE RAINFALL (mm)
{{$date}} {{$station->id}} {{$station->station_name}} {{$station->latitude}} {{$station->longitude}}
@csrf @if($observation) @endif
@if(old('station_id') == $station->id) @error('rainfall')
{{ $message }}
@enderror @endif
@endsection