Stock Adjustment Details

{{ $stockAdjustment->adjustment_number }}

Status: {{ ucfirst($stockAdjustment->status) }}

Date:

{{ $stockAdjustment->adjustment_date->format('Y-m-d') }}

Type:

{{ ucfirst(str_replace('_', ' ', $stockAdjustment->adjustment_type)) }}

Warehouse:

{{ $stockAdjustment->warehouse->warehouse_name }}

Reason:

{{ $stockAdjustment->reason }}

Items

@foreach ($stockAdjustment->items as $item) @endforeach
Product System Qty Actual Qty Adjustment Value
{{ $item->product->product_name }} {{ number_format($item->system_quantity, 2) }} {{ number_format($item->actual_quantity, 2) }} {{ number_format($item->adjustment_quantity, 2) }} {{ number_format($item->adjustment_value, 2) }}
@if($stockAdjustment->isDraft())
@csrf Post Adjustment
@endif