Basic Information
- Product Type
- {{ $product->product_type }}
- Unit
- {{ $product->unit }}
- Cost
- ${{ number_format($product->cost, 2) }}
- Price per Unit
- ${{ number_format($product->price_per_unit, 2) }}
Inventory Information
- Quantity in Stock
-
{{ $product->quantity_in_stock }} {{ $product->unit }}
@if($product->isLowStock())
Low Stock
@endif
- Low Stock Threshold
- {{ $product->low_stock_threshold }} {{ $product->unit }}
- Status
-
{{ $product->is_active ? 'Active' : 'Inactive' }}
- Created At
- {{ $product->created_at->format('M d, Y H:i') }}
- Last Updated
- {{ $product->updated_at->format('M d, Y H:i') }}