fix Customer view to view tbl_payment_gateway

This commit is contained in:
iBNu Maksum
2024-10-17 14:09:11 +07:00
parent 234e5e3967
commit b3744a5007

View File

@ -282,7 +282,7 @@ switch ($action) {
} }
if ($v == 'order') { if ($v == 'order') {
$v = 'order'; $v = 'order';
$query = ORM::for_table('tbl_transactions')->where('username', $customer['username'])->order_by_desc('id'); $query = ORM::for_table('tbl_payment_gateway')->where('username', $customer['username'])->order_by_desc('id');
$order = Paginator::findMany($query); $order = Paginator::findMany($query);
$ui->assign('order', $order); $ui->assign('order', $order);
} else if ($v == 'activation') { } else if ($v == 'activation') {