@extends('layouts.client') @section('content')
| Description | Qty | Unit | Total |
|---|---|---|---|
| {{ $item->description }} | {{ $item->qty }} | {{ $invoice->currency }} {{ number_format((float)$item->unit_price, 2) }} | {{ $invoice->currency }} {{ number_format((float)$item->total, 2) }} |
| Subtotal | {{ $invoice->currency }} {{ number_format((float)$invoice->subtotal, 2) }} | ||
| Tax | {{ $invoice->currency }} {{ number_format((float)$invoice->tax, 2) }} | ||
| Total | {{ $invoice->currency }} {{ number_format((float)$invoice->total, 2) }} | ||
| Gateway | Ref | Status | Amount | Date |
|---|---|---|---|---|
| {{ $txn->gateway }} | {{ $txn->txn_ref ?? '-' }} | {{ $txn->status }} | {{ $txn->currency }} {{ number_format((float)$txn->amount, 2) }} | {{ $txn->created_at }} |
| No transactions yet. | ||||