Add Notification Message for Buy Balance

This commit is contained in:
Ibnu Maksum
2023-08-14 14:16:56 +07:00
parent e5f18ec7e4
commit a5a959eade
5 changed files with 78 additions and 13 deletions

View File

@ -0,0 +1,20 @@
<?php
/**
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
* This script is for managing user balance
**/
class Balance {
public static function add($customer, $amount, $note){
}
public static function transfer($customer, $phoneTarget){
}
public static function pay($customer, $amount, $note){
}
}