@extends('frontend.layouts.observe') @section('after-styles') @endsection @section('content')

Real Time Water Level Observations

Select the hour range

{{ Form::open(array('route' => 'frontend.alert.get.form.data', 'class' => 'form-inline')) }}
{{ Form::text('start_date',$start,['class' => 'form-control start_date', 'id' => 'start_date', 'required' => 'required', 'autocomplete' => 'off']) }}
{{ Form::text('end_date',$end,['class' => 'form-control end_date', 'id' => 'end_date', 'required' => 'required', 'autocomplete' => 'off']) }}
{{-- {{ Form::hidden('current_start_date', null) }}--}} {{--{{ Form::hidden('current_end_date', null) }}--}} {{--{{ Form::hidden('station', null) }}--}}
{{ Form::button('submit', ['class' => 'btn btn-info', 'type' => 'submit']) }}
{{ Form::close() }}

{{----}} @foreach($values as $key => $value) {{-- {{ dd($value) }}--}} @if($value['value'] !== null) @if(isset($stations[$key]['name'])) @endif @endif @endforeach
StationCurrent ValueValue (max) Recorded at
{{ $stations[$key]['name'] }} {{ $value['value'] }} mMSL {{ $value['updated'] }}

Normal
Alert
Flood
@endsection @section('after-scripts') @endsection