@extends('layout.app') @section('content')
Back
Purchase Information
Voucher No#{{ $purchase->voucher_no }}
Invoice No#{{ $purchase->invoice_number }}
Net Payable {{ $purchase->subtotal }} Paid {{ $purchase->paid }} Due {{ $purchase->due }}
Payment Information
@foreach ($purchase->payments as $row) @endforeach
Cheque Number {{ $row->cheque_number }} Account Number {{ $row->account_number }} Branch Name {{ $row->branch }} Bank Name {{ $row->bank_name }} Amount {{ $row->amount }}
Items
@foreach ($purchase->items as $row) @endforeach
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 ?? '' }}
@endsection