Customer Dashboard change

This commit is contained in:
Ibnu Maksum
2023-11-15 11:39:05 +07:00
parent 4b596d91bd
commit 69ea0d0b7f
3 changed files with 90 additions and 78 deletions

View File

@ -22,7 +22,7 @@ class User
public static function _billing()
{
$id = $_SESSION['uid'];
$d = ORM::for_table('tbl_user_recharges')->where('customer_id', $id)->find_one();
$d = ORM::for_table('tbl_user_recharges')->where('customer_id', $id)->find_many();
return $d;
}
}