@extends('layouts.horizontal', ['title' => 'Goods Receipt Note', 'topbarTitle' => 'Purchases', 'nonav' => true]) @section('content')

#: {{ $grn->grn_number }}

Supplier: {{ $grn->supplier_name }}
Contact Person: {{ $grn->contact_person }}
Email: {{ $grn->email }}
Phone: {{ $grn->contact_number }}
Address: {{ $grn->ho_address }}

{{ $grn->grn_comment }}

Purchase Order Items
@php $total_cost = 0; @endphp @foreach($grn_items as $item) @php $total_cost += $item->grn_qty_received * $item->grn_unit_price; @endphp @endforeach
Brand Product SKU Unit Price Received Qty Cost
{{ $item->grn_brand_name }} {{ $item->grn_product_name }} {{ $item->grn_sku }} {{ number_format($item->grn_unit_price, 2) }} {{ $item->grn_qty_received }} {{ number_format($item->grn_qty_received * $item->grn_unit_price, 2) }}
Total {{ number_format($total_cost, 2) }}

-----------------------------

Prepared By

-----------------------------

Checked By

-----------------------------

Authorized By

-----------------------------

Received By

@endsection