{{ $product->name }}

Product Information

SKU: {{ $product->sku }}
Category: {{ $product->category }}
Status: {{ ucfirst($product->status) }}
@if($product->description)
Description:

{{ $product->description }}

@endif

Pricing & Inventory

Price: ${{ number_format($product->price, 2) }}
Cost: ${{ number_format($product->cost, 2) }}
Profit Margin: {{ $product->price > 0 ? number_format((($product->price - $product->cost) / $product->price) * 100, 1) : 0 }}%
Stock: {{ $product->stock_quantity }} {{ $product->unit }}
Min Stock Level: {{ $product->min_stock_level }} {{ $product->unit }}
@if($product->weight)
Weight: {{ $product->weight }} kg
@endif
Created: {{ $product->created_at->format('M j, Y g:i A') }}
Updated: {{ $product->updated_at->format('M j, Y g:i A') }}
@csrf @method('DELETE')