|
|
@@ -200,20 +200,20 @@ class BalanceLogService extends BaseService
|
|
|
// ->orderBy('created_at', 'desc')
|
|
|
// ->get();
|
|
|
|
|
|
- $text = "流水历史 \n";
|
|
|
+ $text = lang("流水历史")." \n";
|
|
|
foreach ($list as $item) {
|
|
|
$text .= "---------------------\n";
|
|
|
- $text .= "日期:{$item['date']} \n";
|
|
|
- $text .= "流水: {$item['flow']} \n";
|
|
|
+ $text .= "日期: {$item['date']} \n";
|
|
|
+ $text .= "流水: {$item['flow']} \n";
|
|
|
$text .= "返水: {$item['refund']} \n";
|
|
|
$text .= "盈利: {$item['profit']} \n";
|
|
|
}
|
|
|
|
|
|
$keyboard = [[
|
|
|
- ['text' => "👇下一页", 'callback_data' => "FlowingHistoryPage@@" . ($page + 1)]
|
|
|
+ ['text' => "👇".lang("下一页"), 'callback_data' => "FlowingHistoryPage@@" . ($page + 1)]
|
|
|
]];
|
|
|
if ($page > 1) {
|
|
|
- array_unshift($keyboard[0], ['text' => "👆上一页", 'callback_data' => "FlowingHistoryPage@@" . ($page - 1)]);
|
|
|
+ array_unshift($keyboard[0], ['text' => "👆".lang("上一页"), 'callback_data' => "FlowingHistoryPage@@" . ($page - 1)]);
|
|
|
}
|
|
|
return [
|
|
|
'chat_id' => $memberId,
|