@extends('layouts.app') @section('title', 'Operations Dashboard - Blackberry Farm') @section('content')
Farm management and monitoring center
Real-time operations tracking and weather monitoring
Conditions: {{ $currentWeather['description'] }}
Feels like: {{ $currentWeather['feels_like'] }}ยฐF
Humidity: {{ $currentWeather['humidity'] }}%
Wind: {{ $currentWeather['wind_speed'] }} mph {{ \App\Services\OpenWeatherMapService::getWindDirection($currentWeather['wind_direction']) }}
@if($currentWeather['wind_gust'] > 0)Gusts: {{ $currentWeather['wind_gust'] }} mph
@endifPressure: {{ $currentWeather['pressure'] }}" Hg
Visibility: {{ $currentWeather['visibility'] }} miles
Updated: {{ $currentWeather['updated_at'] }} | Location: {{ $currentWeather['location'] }}
@elseConditions: {{ ucfirst($currentWeather['weather'][0]['description']) }}
Feels like: {{ round($currentWeather['main']['feels_like']) }}ยฐF
Humidity: {{ $currentWeather['main']['humidity'] }}%
@if(isset($currentWeather['wind']['speed']))Wind: {{ round($currentWeather['wind']['speed']) }} mph
@endifSource: Open-Meteo API | Note: Configure OpenWeatherMap API key for enhanced weather data
@endif
๐ 5-day forecast available with basic weather data
Configure OpenWeatherMap API key for detailed forecast with icons and precipitation chances
No recent activities. Start logging your farm operations!
@endifBlackberry Farm Operations Dashboard | Last updated: {{ date('M j, Y g:i A') }}