@extends('layouts.app') @section('title') Good Receiving Edit @endsection @section('button') Back @endsection @section('content')
@csrf
GOOD RECEIVING DETAILS

{{ substr($good_receiving->attachment, 14) }}

PRODUCT/MATERIAL DETAILS

@foreach ($good_receiving_products as $good_receiving_product) @php $po_detail = \App\Models\PurchaseOrderDetail::where('purchase_order_id', $good_receiving->po_id) ->where('product_id', $good_receiving_product->product_id) ->first(); @endphp @endforeach
Sr No Part No. Part Name Unit Po Qty Previous Qty Balance Qty Remaining Qty Received Qty Remarks Action
{{ $loop->iteration }} {{ $good_receiving_product->product->part_no }} {{ $good_receiving_product->product->part_name }} {{ $good_receiving_product->product->units->name ?? '' }}
{{-- PRODUCTS MODAL --}} @endsection