@extends('layouts.master')
@section('page_title', 'View Details')
@section('title', 'Purchases Order Details')
@section('main_item', 'Purchase Orders')
@section('sub_item', 'Purshase order Details')
@section('content')
Supplier:
{{ $grn->supplier->business_name }}
{{ $grn->supplier->name }}
{{ $grn->supplier->landmark }}
{{ $grn->supplier->city }}
Mobile: {{ $grn->supplier->mobile }}
Email: {{ $grn->supplier->email }}
Reference No: #{{ $grn->ref_no }}
Date: {{ explode(' ', $grn->grn_date)[0] }}
Purchase Status: Received
Payment Status: Paid
| Product Name |
Purchase Quantity |
Purchase Price |
Subtotal |
@foreach ($grn->grnItems as $item)
| {{ $item->product->product_name }} |
{{ $item->qty . ' ' . $item->product->unit->short_name }} |
{{ number_format($item->grn_unit_cost, 2) }} |
{{ number_format($item->grn_line_total, 2) }} |
@endforeach
| Date |
Reference Number |
Amount |
Payment Mode |
Payment Note |
| 2019/02/8 |
xyx@gmail.com |
+123456789 |
Tokyo, JAP |
5.1 |
| Net Total Amount: |
|
₨
{{ number_format($grn->grn_total, 2) }} |
| Discount: |
(-)
|
₨
{{ number_format($grn->grn_discount, 2) }}
|
| Purchase Tax: |
(+) |
₨ 0.00
|
| Additional Shipping charges: |
(+) |
Rs 0.00 |
| Purchase Order Total: |
|
₨
{{ number_format($grn->grn_nettotal, 2) }} |
@endsection
@section('scripts')
@endsection