@extends('layouts/inventory_layout') @section('title', '| '.$moduleTitle) @section('content') @include('successMsg')
Purchase Order List    
{{$moduleTitle}}

Bill No : {{'PO'.$data->order_no}} Bill Date : {{date('d-m-Y', strtotime($data->order_date))}} Total Quantity : {{$data->total_quantity}} Total Amount : {{number_format($data->total_amount, 2)}}
Discount Amount : {{$data->discount_amount}} T/A with discount : {{number_format($data->total_amount_after_discount, 2)}} Gross Toal : {{number_format($data->gross_total, 2)}} Pay Total : {{number_format($data->pay_amount, 2)}}


@php $no=0; $t_qty = $t_amount = 0; @endphp @foreach($data->inv_purchase_order_details as $details) @php $purchaseBarcodeQuantity = 0; $purchaseBarcodeQuantity = $details->quantity; @endphp @php $t_qty += $purchaseBarcodeQuantity; $t_amount += ($purchaseBarcodeQuantity * $details->inv_product->cost_price); @endphp @endforeach
SL No. Product Name Model Name Barcode Purchase Order Information
Qty Unit Price Total Price
{{++$no}} {{$details->inv_product->name}} {{$details->inv_product->inv_model->name}} {{$details->inv_product->barcode}} {{$purchaseBarcodeQuantity}} {{number_format($details->inv_product->cost_price, 2)}} {{number_format($purchaseBarcodeQuantity * $details->inv_product->cost_price, 2)}}
Total {{$t_qty}} Total {{number_format($t_amount, 2)}}
@endsection