@extends('pay_online.master') @section('content')
| Product | Quantity | Total |
|---|---|---|
|
{{$item->product->name}} |
{{$item->quantity}} | Rs {{ number_format($item->quantity * $item->unit_price_inc_tax, 2) }} |
Total : |
Rs {{ number_format($transaction->total_before_tax, 2) }} |
| Total | Rs {{ number_format($transaction->final_total, 2) }} | |
| Trx Ref No | {{ $transaction_payment->transaction_no }} | |
| Trx Date | {{ \Carbon\Carbon::parse($transaction_payment->created_at)->format('Y-m-d H:i:s') }} | |
| Order Status | Invoice Paid |