@extends('layouts.app') @section('title') Purchase Order @stop @section('breadcrumb')
@stop @section('css') @stop @section('content')Code | Item - Brand | Description | Demand Qty | Received Qty | Price |
---|---|---|---|---|---|
{{$item->item_code}} | {{$item->item_name}} - {{$item->manufacture->name}} Non Critical | {{$purchase_request->item->where('item_id' , $list->item_id )->first()->description}} | {{number_format($list->demand_quantity , 2)}} | {{number_format($list->received_quantity , 2)}} | PKR {{number_format($list->price , 2)}} |
Total | {{number_format($quantity , 2)}} | {{number_format($receive_quantity , 2)}} | PKR {{number_format($vendor_item_price , 2)}} |
Total Item: {{number_format($count, 2)}}
Demand Quantity: {{number_format($quantity, 2)}}
Receive Quantity: {{number_format($receive_quantity, 2)}}
Amount : PKR {{number_format($vendor_item_price , 2) }}
@php $advanceAmount = ( $purchase_order->total_amount*$purchase_order->advance) / 100; @endphp Advance : {{number_format($advanceAmount) . ' (' .$purchase_order->advance .'%)' }}