🌱 Plant Management

Track and manage your blackberry plants

+ Add New Plant 🏠 Dashboard
{{ $plants->total() }}
Total Plants
{{ $plants->where('status', 'active')->count() }}
Active Plants
{{ $varieties->count() }}
Varieties Available
{{ $plants->whereNotNull('qr_code')->count() }}
QR Codes Generated
@if($plants && $plants->count() > 0)
@foreach($plants as $plant)

🫐 {{ $plant->plant_id }}

{{ ucfirst($plant->status) }}

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

Location: {{ $plant->location ?? 'Not specified' }}

Planted: {{ $plant->planted_date ? date('M j, Y', strtotime($plant->planted_date)) : 'Unknown' }}

@endforeach
{{ $plants->links() }}
@else
🫐

No Plants Added Yet

Start building your blackberry farm by adding your first plant.

You can track up to 10,000+ plants with individual QR codes and detailed records.

🌱 Add Your First Plant

Quick Start: Add your 40 Prime Ark Freedom plants to begin tracking growth and production.

@endif