🌡️ Soil Temperature
{{ round($soilHealth['surface_temp_avg'] ?? 0) }}°F
Average at 6cm depth
@if($soilHealth['surface_temp_avg'] >= 50 && $soilHealth['surface_temp_avg'] <= 80)
Optimal for blackberry growth
@elseif($soilHealth['surface_temp_avg'] < 50)
Below optimal range
@else
Above optimal range
@endif
💧 Root Zone Moisture
{{ round(($soilHealth['root_zone_moisture'] ?? 0) * 100) }}%
3-9cm depth average
@if($soilHealth['root_zone_moisture'] >= 0.2 && $soilHealth['root_zone_moisture'] <= 0.4)
Excellent moisture levels
@elseif($soilHealth['root_zone_moisture'] >= 0.15)
Adequate moisture
@else
Needs irrigation
@endif
@if(isset($soilHealth['moisture_consistency']))
📊 Moisture Stability
{{ round($soilHealth['moisture_consistency'], 3) }}
Consistency index
@if($soilHealth['moisture_consistency'] < 0.05)
Very consistent
@elseif($soilHealth['moisture_consistency'] < 0.1)
Moderately consistent
@else
Variable conditions
@endif
@endif
@if(isset($soilHealth['temperature_stability']))
🌡️ Temperature Stability
{{ round($soilHealth['temperature_stability'], 1) }}°F
Daily temperature range
@if($soilHealth['temperature_stability'] < 5)
Very stable
@elseif($soilHealth['temperature_stability'] < 10)
Moderately stable
@else
High variation
@endif
@endif
🌿 Soil Management Recommendations
@php
$avgMoisture = ($soilHealth['root_zone_moisture'] ?? 0) * 100;
$avgTemp = $soilHealth['surface_temp_avg'] ?? 0;
@endphp
@if($avgMoisture < 20)
💧 Irrigation Needed
Root zone moisture is at {{ round($avgMoisture) }}%, below optimal range. Consider increasing irrigation frequency or duration.
@elseif($avgMoisture > 40)
⚠️ Reduce Watering
Soil moisture is at {{ round($avgMoisture) }}%, which may lead to root problems. Reduce irrigation or improve drainage.
@else
✅ Optimal Moisture
Soil moisture levels are in the ideal range for blackberry growth. Continue current irrigation schedule.
@endif
@if($avgTemp < 50)
🌡️ Cold Soil Conditions
Soil temperature is {{ round($avgTemp) }}°F. Consider mulching to insulate soil and protect roots from cold.
@elseif($avgTemp > 85)
🌡️ Hot Soil Conditions
Soil temperature is {{ round($avgTemp) }}°F. Apply mulch to cool soil and reduce evaporation.
@endif
📊 General Soil Health
Monitor soil conditions regularly during growing season. Optimal soil temperature for blackberries is 60-75°F with moisture at 25-35%.