🌱 {{ $plant->plant_id }}

{{ $plant->variety_name ?? 'Unknown Variety' }}

📱 Generate QR Code ← Back to Plants

🌱 Basic Information

Plant ID: {{ $plant->plant_id }}
Variety: {{ $plant->variety_name ?? 'Not specified' }}
Status: {{ ucfirst($plant->status) }}
Planted Date: {{ $plant->planted_date ? date('M j, Y', strtotime($plant->planted_date)) : 'Not recorded' }}
Location: {{ $plant->location ?: 'Not specified' }}

📱 QR Code System

QR Code ID: {{ $plant->qr_code ?? 'Not generated' }}

📱 Download QR Code

Print this QR code and attach to the plant for easy field identification

@if($plant->notes)

📝 Notes

{{ $plant->notes }}

@endif

📊 Recent Measurements

@if($measurements && $measurements->count() > 0) @foreach($measurements as $measurement)
{{ date('M j, Y', strtotime($measurement->measurement_date)) }} Height: {{ $measurement->height_cm ?? 'N/A' }}cm, Health: {{ $measurement->health_score ?? 'N/A' }}/10
@endforeach @else

No measurements recorded yet

Plant measurements will be available once you add some data

@endif
@if(isset($harvests))

🫐 Recent Harvests

@if($harvests && $harvests->count() > 0) @foreach($harvests as $harvest)
{{ date('M j, Y', strtotime($harvest->harvest_date)) }} {{ $harvest->quantity ?? 0 }} lbs
@endforeach @else

No harvests recorded yet

Harvest tracking will be available in Phase 4

@endif
@endif
💧 Log Watering 🌱 Log Fertilizer ← Back to Plants