@extends('layout.app') @section('content')
Voucher No#{{ $purchase->voucher_no }} | |||||
---|---|---|---|---|---|
Invoice No#{{ $purchase->invoice_number }} | |||||
Net Payable | {{ $purchase->subtotal }} | Paid | {{ $purchase->paid }} | Due | {{ $purchase->due }} |
Cheque Number | {{ $row->cheque_number }} | Account Number | {{ $row->account_number }} | Branch Name | {{ $row->branch }} | Bank Name | {{ $row->bank_name }} | Amount | {{ $row->amount }} |
---|
Item | Category | Unit | Quantity | Price(BDT) | Item Total(BDT) |
---|---|---|---|---|---|
{{ $row->item->name ?? '' }} | {{ $row->item->category->name ?? '' }} | {{ $row->item->unit->name ?? '' }} | {{ $row->quantity ?? '' }} | {{ $row->buying_price ?? '' }} | {{ $row->buying_price * $row->quantity }} |
Remarks | {{ $purchase->remark ?? '' }} |