Customer Dashboard change

This commit is contained in:
Ibnu Maksum 2023-11-15 11:39:05 +07:00
parent 4b596d91bd
commit 69ea0d0b7f
No known key found for this signature in database
GPG key ID: 7FC82848810579E5
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;
}
}