@extends('layouts.app') @section('title', 'Watering Logs - Blackberry Farm') @section('content')

💧 Watering Logs

Track irrigation and watering sessions

Monitor plant hydration and water usage

💧 Log Watering 💦 Bulk Watering
{{ $wateringLogs->total() ?? 0 }}
Total Watering Sessions
{{ $weeklyCount ?? 0 }}
This Week
{{ $totalGallons ?? 0 }}
Total Gallons (Last 30 Days)
Clear
@if(isset($wateringLogs) && $wateringLogs->count() > 0) @foreach($wateringLogs as $log) @endforeach
Date Plant/Area Duration Amount Method Source Soil Moisture Notes
{{ \Carbon\Carbon::parse($log->watering_date)->format('M j, Y') }} @if($log->plant_id) {{ $log->plant_id }} @else {{ $log->area_watered ?? 'General Area' }} @endif {{ $log->duration_minutes }} min @if($log->water_amount_gallons) {{ $log->water_amount_gallons }} gal @else - @endif {{ ucwords(str_replace('_', ' ', $log->irrigation_method ?? 'hand watering')) }} {{ ucwords(str_replace('_', ' ', $log->water_source ?? 'municipal')) }} @if($log->soil_moisture_before) {{ $log->soil_moisture_before }}/10 @else - @endif @if($log->notes) {{ Str::limit($log->notes, 30) }} @else - @endif
@if(method_exists($wateringLogs, 'links')) @endif @else

💧 No watering logs found

Start tracking your watering sessions to monitor plant care.

Log First Watering Session
@endif @endsection