{{--
| Product | Category | Type | Pricing | Status | Orders | Addons | Actions | |
|---|---|---|---|---|---|---|---|---|
|
{{ $product->name }}
SKU: {{ $product->sku }}
{{ $product->description }}
|
{{ ucfirst($product->category) }} | {{ ucfirst($product->type) }} | @if ($product->pricing) @if ($product->pricing->monthly) ${{ number_format($product->pricing->monthly, 2) }}/mo @endif @if ($product->pricing->monthly && $product->pricing->annually) • @endif @if ($product->pricing->annually) ${{ number_format($product->pricing->annually, 2) }}/yr @endif @if ($product->pricing->one_time_price) ${{ number_format($product->pricing->one_time_price, 2) }} @endif @endif | {{ ucfirst($product->status) }} | {{ $product->orders->count() ?? 0 }} | {{ $product->addons->count() ?? 0 }} |
|
|
| No product found. | ||||||||