@extends('layouts.app') @section('title', 'Nursery Management - Blackberry Farm') @section('content')
Nursery Details and Purchase History
{{ $nursery->notes }}
| Date | Variety | Plant Count | Total Amount | Invoice |
|---|---|---|---|---|
| {{ date('M j, Y', strtotime($purchase->purchase_date)) }} | {{ $purchase->variety_purchased ?? 'Various' }} | {{ $purchase->plant_count }} plants | ${{ number_format($purchase->total_amount ?? 0, 2) }} | {{ $purchase->invoice_number ?? 'N/A' }} |
No purchase history recorded yet
Purchase records will be tracked automatically when you create plants from this nursery
Variety: {{ $plant->variety_name ?? 'Unknown' }}
Status: {{ ucfirst($plant->status) }}
Planted: {{ $plant->planted_date ? date('M j, Y', strtotime($plant->planted_date)) : 'Unknown' }}
View PlantNo plants from this nursery yet
Plants will appear here when you create them with this nursery as the source
🌱 Add Plant from this Nursery