@extends('layouts.app') @section('title', 'Watering Logs - Blackberry Farm') @section('content')
Track irrigation and watering sessions
Monitor plant hydration and water usage
| 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 |
Start tracking your watering sessions to monitor plant care.
Log First Watering Session