@extends('layouts.app') @section('title') Purchase Order Receipt @stop @section('breadcrumb')
@stop @section('css') @stop @section('content')Code | Item - Brand | Description | Quantity | Price |
---|---|---|---|---|
{{$item->item_code}} | {{$item->item_name}} - {{$item->brand}} | {{$purchase_request->item->where('item_id' , $list->item_id )->first()->description}} | {{number_format($list->pass_quantity, 2)}} |
Total Item: {{number_format($count, 2)}}
Total Item Quantity: {{number_format($quantity, 2)}}
Total Amount To Pay: PKR {{number_format($receipt->total_amount , 2) }}
Total Paid: PKR {{number_format($receipt->total_pay_amount , 2) }}
Remaining Amount: PKR {{number_format($receipt->remaining_amount , 2) }}Code | Item | Description | Receive Quantity | Pass Quantity | Price |
---|---|---|---|---|---|
{{$item->item_code}} | {{$item->item_name}} - {{$item->brand}} | {{$purchase_request->item->where('item_id' , $list->item_id )->first()->description}} | {{number_format($list->quantity, 2)}} | {{number_format($list->pass_quantity, 2)}} | PKR {{number_format($item_cs->price , 2)}} |
Total Item: {{number_format($count, 2)}}
Pass Item Quantity: {{number_format($pass_quantity, 2)}}
Total Amount To Pay: PKR {{number_format($receipt->total_amount , 2) }}