diff --git a/src/resources/views/layout/dailyrainfall.blade.php b/src/resources/views/layout/dailyrainfall.blade.php new file mode 100644 index 00000000..62bf5ad5 --- /dev/null +++ b/src/resources/views/layout/dailyrainfall.blade.php @@ -0,0 +1,89 @@ +@extends('layout.app') +@section('content1') + +
+
+ +
+ +
+ + +
+ +
+ + +
+ +
+ +
+ +
+ + @if($dailyData->isNotEmpty()) +
+ + + + + + + + + + + + + @foreach ($dailyData as $row) + + + + + + + + @endforeach + +
No@lang('messages.time')Hourly (mm)Daily (mm)Current RF (mm)
{{ $loop->iteration }}{{ $row->time }}{{ $row->hourly ?? '-' }}{{ $row->daily ?? '-' }}{{ $row->currentrf ?? '-' }}
+
+ @else + + @endif + +
+
+ +@endsection \ No newline at end of file diff --git a/src/resources/views/nav/navbar.blade.php b/src/resources/views/nav/navbar.blade.php index aa4458ec..6a63845b 100644 --- a/src/resources/views/nav/navbar.blade.php +++ b/src/resources/views/nav/navbar.blade.php @@ -1,3 +1,4 @@ +@php $isAndroid = preg_match('/Android/i', request()->userAgent()); @endphp