🐛 Pest & Disease Dashboard

Integrated Pest Management (IPM) monitoring and control center

Report Issue View All Issues Operations
{{ $totalIssues ?? 0 }}
Total Issues Logged
{{ $activeIssues ?? 0 }}
Active Issues
{{ $resolvedIssues ?? 0 }}
Resolved This Month
{{ $averageSeverity ?? 'N/A' }}
Average Severity
{{ $overdueFollowUps ?? 0 }}
Overdue Follow-ups

📊 Issue Analysis

Severity Distribution

{{ $severityBreakdown[1] ?? 0 }}
Minor
{{ $severityBreakdown[2] ?? 0 }}
Moderate
{{ $severityBreakdown[3] ?? 0 }}
Significant
{{ $severityBreakdown[4] ?? 0 }}
Severe
{{ $severityBreakdown[5] ?? 0 }}
Critical

Issue Types

{{ $typeBreakdown['pest'] ?? 0 }}
Pest Issues
{{ $typeBreakdown['disease'] ?? 0 }}
Diseases
{{ $typeBreakdown['virus'] ?? 0 }}
Viruses
{{ $typeBreakdown['nutritional'] ?? 0 }}
Nutritional
{{ $typeBreakdown['environmental'] ?? 0 }}
Environmental

Recent Issues

@if(isset($recentIssues) && count($recentIssues) > 0) @foreach($recentIssues as $issue)
{{ \Carbon\Carbon::parse($issue->observed_date)->format('M j') }}
{{ $issue->issue_name ?: 'Unnamed Issue' }} @if($issue->plant_id) ({{ $issue->plant_id }}) @endif
{{ ucfirst($issue->issue_type) }} - Severity {{ $issue->severity_level }}/5
@php $status = $issue->status ?? 'active'; if ($issue->treatment_applied && $status === 'active') { $status = 'treated'; } @endphp {{ ucfirst($status) }}
@endforeach @else

No recent issues - excellent!

@endif

⚠️ Alerts & Actions

@if(isset($criticalAlerts) && count($criticalAlerts) > 0) @foreach($criticalAlerts as $alert)
{{ $alert['title'] }}
{{ $alert['message'] }}
@endforeach @endif @if(isset($highSeverityCount) && $highSeverityCount > 0)
High Severity Alert:
{{ $highSeverityCount }} issues with severity 4-5 require immediate attention
@endif @if(isset($overdueFollowUps) && $overdueFollowUps > 0)
Overdue Follow-ups:
{{ $overdueFollowUps }} issues have overdue follow-up checks
@endif @if(isset($issueTrend))
Issue Trend:
Issues are {{ $issueTrend }} compared to last month @if($issueTrend === 'increasing') ↗ Increasing @elseif($issueTrend === 'decreasing') ↘ Decreasing @else ➡ Stable @endif
@endif
🔍 Scout Plants

Regular monitoring check

Start Scout
📋 Treatment Log

Record treatment application

Log Treatment

📚 Common Blackberry Pest & Disease Reference

🪰 Spotted Wing Drosophila (SWD)

Symptoms: Soft, collapsing fruit with tiny holes

Timing: Peak during fruit ripening (July-September)

Treatment: Spinosad-based sprays, harvest timing

🍄 Anthracnose

Symptoms: Purple lesions on canes, fruit rot

Timing: Wet, humid conditions

Treatment: Copper fungicides, pruning infected canes

🕷️ Spider Mites

Symptoms: Stippled, bronze leaves, fine webbing

Timing: Hot, dry conditions

Treatment: Predatory mites, miticide sprays

🦠 Orange Rust

Symptoms: Orange spores on leaf undersides

Timing: Spring emergence

Treatment: Remove infected plants immediately

🪲 Japanese Beetles

Symptoms: Skeletonized leaves

Timing: Mid-summer (June-August)

Treatment: Hand picking, pheromone traps (away from plants)

🍄 Cane Blight

Symptoms: Wilting canes, dark lesions

Timing: Following pruning wounds

Treatment: Prune during dry weather, sanitize tools

💡 Integrated Pest Management (IPM) Recommendations

@if(isset($recommendations) && count($recommendations) > 0) @else

🎯 Current IPM Focus:
• Scout plants weekly during growing season
• Monitor for Spotted Wing Drosophila during fruit development
• Maintain good air circulation through proper pruning
• Remove infected plant material promptly
• Use beneficial insects when possible
• Rotate chemical treatments to prevent resistance
• Keep detailed records for pattern identification

@endif

Dashboard last updated: {{ date('M j, Y g:i A') }} | Total treatment cost this year: ${{ number_format($totalTreatmentCost ?? 0, 2) }} | Prevention success rate: {{ $preventionRate ?? 'N/A' }}%