@extends('layouts.app') @section('title', 'Yield Forecasting - Blackberry Farm Analytics') @section('content')
← Analytics Dashboard 📈 Growth Projections 💰 ROI Analysis 🌡️ Weather Analysis

⚙️ Forecasting Parameters

{{ $forecasts['summary']['total_plants'] }}
Plants Forecasted
Active production plants
{{ number_format($forecasts['summary']['total_estimated_yield'], 1) }}lbs
Total Estimated Yield
{{ number_format($forecasts['summary']['avg_yield_per_plant'], 1) }} lbs/plant avg
${{ number_format($forecasts['summary']['total_estimated_value'], 2) }}
Estimated Market Value
$4.00/lb average price
{{ count($forecasts['summary']['varieties_breakdown']) }}
Varieties in Production
Diversified harvest

📊 Yield Forecasting Visualization

🫐 Yield by Variety

🌱 Plant Age Distribution

💚 Health Score Impact

📅 Harvest Timeline

🫐 Variety-Specific Forecasts

@foreach($forecasts['summary']['varieties_breakdown'] as $varietyName => $varietyData)

{{ $varietyName }}

Plant Count: {{ $varietyData['count'] }}
Estimated Yield: {{ number_format($varietyData['total_yield'], 1) }}lbs
Estimated Value: ${{ number_format($varietyData['total_value'], 2) }}
Avg Yield/Plant: {{ number_format($varietyData['total_yield'] / $varietyData['count'], 1) }}lbs
@endforeach

📋 Individual Plant Forecasts

@foreach($forecasts['individual_forecasts'] as $forecast) @endforeach
Plant ID Variety Plant Age Health Score Estimated Yield Estimated Value Harvest Window
{{ $forecast['plant_id'] }}
{{ $forecast['variety_name'] }}
{{ $forecast['plant_age'] }} years
@if($forecast['plant_age'] < 1) Young plant @elseif($forecast['plant_age'] < 2) Developing @elseif($forecast['plant_age'] < 3) Mature @else Fully established @endif
{{ $forecast['health_score'] }}/10
@if($forecast['health_score'] >= 8) Excellent @elseif($forecast['health_score'] >= 6) Good @else Needs attention @endif
{{ number_format($forecast['estimated_yield'], 1) }}lbs
${{ number_format($forecast['estimated_value'], 2) }}
{{ $forecast['harvest_window'] }}
@if(count($forecasts['individual_forecasts']) > 50)

Showing first 50 plants. Use filters to narrow results.

@endif

🔬 Forecasting Methodology

Yield Calculation Factors:
Market Value Assumptions:

Disclaimer: These forecasts are estimates based on current plant health, historical data, and industry averages. Actual yields may vary significantly due to weather events, pest/disease pressure, market conditions, and other unforeseen factors. Use these projections as planning guidelines rather than guaranteed outcomes.

@endsection @push('scripts') @endpush