List Transaction -
114
Success
12
Pending
23
Canceled
Total Transaction
159
Total Refund
190
Total Transaction
109
INCOME
Item List Transaksi(4 Items)
User ID | Order ID | Seller | Total | Due Date | Status |
---|---|---|---|---|---|
{{ $HistoryTransactionPembeli['userId'] }} | {{ $HistoryTransactionPembeli['orderId'] }} | {{ $HistoryTransactionPembeli['seller'] }} | {{ $HistoryTransactionPembeli['total'] }} | {{ $HistoryTransactionPembeli['dueDate'] }} |
@php
$statusClass="";
if ($HistoryTransactionPembeli['status'] === 'OnProgress'){
$statusClass = 'badge-warning';
}elseif ($HistoryTransactionPembeli['status'] === 'Success'){
$statusClass ='btn btn-info';
}elseif ($HistoryTransactionPembeli['status'] === 'Failed'){
$statusClass ='badge badge-danger';
}
@endphp
{{ $HistoryTransactionPembeli['status'] }} |