{{ $part->description }}
@endifCurrent Stock
{{ number_format($part->quantity_on_hand) }}
@if($part->unit_of_measurement){{ $part->unit_of_measurement }}
@endifSell Price
${{ number_format($part->sell_price, 2) }}
@if($part->sell_price > $part->cost_price){{ number_format((($part->sell_price - $part->cost_price) / $part->cost_price) * 100, 1) }}% margin
@endifCost Price
${{ number_format($part->cost_price, 2) }}
Per unit
Total Value
${{ number_format($part->quantity_on_hand * $part->cost_price, 2) }}
Inventory value
| Date | Type | Quantity | User | Notes |
|---|---|---|---|---|
| {{ $movement->created_at->format('M d, Y g:i A') }} |
|
{{ $movement->movement_type === 'in' ? '+' : '-' }}{{ number_format($movement->quantity) }} | {{ $movement->createdBy->name ?? 'System' }} | {{ $movement->notes }} |
No stock movements recorded yet.
@endif