@extends('procurement::layouts.master')
@section('title','Receipt Record')
@section('content')
Receipt #{{ $receiving->id }}
← Back
- Purchase Order
-
{{ $receiving->purchaseOrder->po_number }}
— {{ $receiving->purchaseOrder->supplier->name ?? '—' }}
- Component
-
@if($receiving->component)
{{ $receiving->component->description }}
{{ $receiving->component->part_number }}
@else—@endif
- Qty Received
- {{ $receiving->qty_received }}
- Received Date
- {{ $receiving->received_date->format('M j, Y') }}
- Received By
- {{ $receiving->received_by ?: '—' }}
- Condition
- {{ ucfirst($receiving->condition) }}
- Bin Location
- {{ $receiving->bin_location ?: '—' }}
@if($receiving->notes)
- Notes
- {{ $receiving->notes }}
@endif
@endsection