@extends('layouts.app') @section('title','observationsdownload') @section('content') @if (session('success')) @endif
@csrf
@csrf

Rainfall Data

Download CSV
@foreach($stations as $station) @endforeach
STATION ID DATE STATION NAME LATITUDE LONGITUDE RAINFALL
{{$station->id}} {{$date}} {{$station->station_name}} {{$station->latitude}} {{$station->longitude}} {{ $observations[$station->id]->rainfall ?? 'Not Reported' }}
@endsection