@extends('stores.procurements.goods_received_notes.profile.main') @section('demographic_info') active @stop @section('navigation') @stop @section('profile')
GRN Number: {{$good_received_note->id}} Date Received: {{ $good_received_note->getDate()}}
Received By: {{$good_received_note->getReceivedBy() }} Exchange Rate: {{$good_received_note->exchange_rate}}
Currency: {{ $good_received_note->currency }} Total Amount: {{ $good_received_note->getAmount()}}
CR: DR: {{ $good_received_note->getDrAccount() }}
Received Quantity: {{$good_received_note->getQuantity() }} Status: {{ $good_received_note->status }}
Reference Number: {{ $good_received_note->reference_number}} Delivery Order Number: {{ $good_received_note->delivery_order_number }}
Remarks: {{ $good_received_note->description }}
@foreach($good_received_note->stockReceivedEntries as $good_received_item) @endforeach
ITEM DESCRIPTIONS QUANTITY PRICE DATE RECEIVED
{{$good_received_item->item}} {{$good_received_item->descriptions}} {{$good_received_item->quantity}} {{$good_received_item->price_per_item}} {{$good_received_note->getDate()}}
@stop