Status: {{ ucfirst($productRecall->status) }}
Recall Date:
{{ $productRecall->recall_date->format('Y-m-d') }}
Supplier:
{{ $productRecall->supplier->supplier_name }}
Warehouse:
{{ $productRecall->warehouse->warehouse_name }}
Recall Type:
{{ ucfirst(str_replace('_', ' ', $productRecall->recall_type)) }}
Reason:
{{ $productRecall->reason }}
| Product | Batch Code | Qty Recalled | Unit Cost | Total Value |
|---|---|---|---|---|
| {{ $item->product->product_name }} | {{ $item->stockBatch->batch_code }} | {{ number_format($item->quantity_recalled, 2) }} | {{ number_format($item->unit_cost, 2) }} | {{ number_format($item->total_value, 2) }} |
| Total: | {{ number_format($productRecall->total_quantity_recalled, 2) }} | {{ number_format($productRecall->total_value, 2) }} | ||
Stock Adjustment: {{ $productRecall->stockAdjustment->adjustment_number }}
@if($productRecall->stockAdjustment->journalEntry)Journal Entry: {{ $productRecall->stockAdjustment->journalEntry->reference }}
@endif