This commit is contained in:
2025-09-11 00:27:01 +05:00
parent 33ec2e11e6
commit 3c3d74ec34
2 changed files with 2 additions and 12 deletions

View File

@@ -58,8 +58,6 @@ class CardTransactionsController extends Controller
end_date: $end_date,
);
info(['re' => $response]);
if ($response->errCode != 0) {
return response()->json([
'status' => false,
@@ -68,10 +66,10 @@ class CardTransactionsController extends Controller
]);
}
return response()->rest([
return response()->json([
'status' => true,
'message' => 'a',
'data' => [],
'data' => $response,
]);
}