Product Recall Details

{{ $productRecall->recall_number }}

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 }}

Recalled Items

@foreach ($productRecall->items as $item) @endforeach
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) }}
@if($productRecall->isPosted() && $productRecall->stockAdjustment)

Stock Adjustment: {{ $productRecall->stockAdjustment->adjustment_number }}

@if($productRecall->stockAdjustment->journalEntry)

Journal Entry: {{ $productRecall->stockAdjustment->journalEntry->reference }}

@endif
@endif @if($productRecall->isDraft())
@csrf
Post Recall
@csrf Cancel Recall
@endif @if($productRecall->isPosted() && !$productRecall->claim_register_id)
@csrf Create Claim Register
@endif