$data->total(), 'page' => $data->currentPage(), 'pageSize' => $size, 'rows' => $data->items() ]; } } if(!function_exists('format_money')){ function format_money($str,$len = '2',$append = ""): string { if (empty($str)) { return "0.00"; } return number_format($str, $len, ".", $append); } }