admin change to adminlte

This commit is contained in:
Ibnu Maksum
2022-10-16 14:48:21 +07:00
parent 9015d519c1
commit a7e8335297
90 changed files with 913 additions and 745 deletions

View File

@ -1,6 +1,6 @@
<?php
/**
* PHP Mikrotik Billing (https://ibnux.github.io/phpmixbill/)
* PHP Mikrotik Billing (https://ibnux.github.io/phpnuxbill/)
**/
_admin();
$ui->assign('_title', $_L['Reports']);
@ -23,6 +23,7 @@ $before_30_days = date('Y-m-d', strtotime('today - 30 days'));
$month_n = date('n');
switch ($action) {
case 'by-date':
case 'daily-report':
$paginator = Paginator::bootstrap('tbl_transactions','recharged_on',$mdate);
$d = ORM::for_table('tbl_transactions')->where('recharged_on',$mdate)->offset($paginator['startpoint'])->limit($paginator['limit'])->order_by_desc('id')->find_many();