@extends('procurement::layouts.master') @section('title','Receiving Log') @section('content') @include('procurement::components.partials.page_header',['title'=>'Receiving Log','actionRoute'=>route('procurement.receiving.create'),'actionLabel'=>'Log Receipt'])
@forelse($records as $r) @empty @endforelse
DatePO #SupplierComponentQtyConditionBinReceived ByNotes
{{ $r->received_date->format('M j, Y') }} {{ $r->purchaseOrder->po_number }} {{ $r->purchaseOrder->supplier->name ?? '—' }} {{ $r->component?->description ?? '—' }} {{ $r->qty_received }} {{ ucfirst($r->condition) }} {{ $r->bin_location ?: '—' }} {{ $r->received_by ?: '—' }} {{ $r->notes ?: '—' }}
No receiving records yet.
{{ $records->links() }} @endsection