{{ $adjustment->inventoryItem->name }}
{{ $adjustment->inventoryItem->sku ?? 'No SKU' }}
{{ $adjustment->type_label }}
{{ $adjustment->inventoryLocation->name ?? 'No specific location' }}
{{ $adjustment->adjustment_date->format('M d, Y h:i A') }}
Before
{{ number_format($adjustment->quantity_before, 2) }}
{{ $adjustment->inventoryItem->unit->abbreviation ?? '' }}
{{ $adjustment->isIncrease() ? '+' : '' }}{{ number_format($adjustment->quantity_change, 2) }}
After
{{ number_format($adjustment->quantity_after, 2) }}
{{ $adjustment->inventoryItem->unit->abbreviation ?? '' }}
{{ $adjustment->reason }}
{{ $adjustment->notes }}
Created
by {{ $adjustment->adjuster->name ?? 'Unknown' }}
{{ $adjustment->created_at->format('M d, Y h:i A') }}
{{ ucfirst($adjustment->status) }}
by {{ $adjustment->approver->name ?? 'Unknown' }}
{{ $adjustment->updated_at->format('M d, Y h:i A') }}
This adjustment is pending approval. Approving will update inventory levels.