From 2d69f0fc5f9c8e8eb0dac2408bef0b4cf3590428 Mon Sep 17 00:00:00 2001
From: Nurmuhammet Allanov
Date: Tue, 1 Oct 2024 19:39:26 +0500
Subject: [PATCH] wip
---
resources/js/vendor/nova/js/additional.js | 27 ++++++++++++-----------
1 file changed, 14 insertions(+), 13 deletions(-)
diff --git a/resources/js/vendor/nova/js/additional.js b/resources/js/vendor/nova/js/additional.js
index 7899473..0d92538 100644
--- a/resources/js/vendor/nova/js/additional.js
+++ b/resources/js/vendor/nova/js/additional.js
@@ -32,21 +32,22 @@ async function fetchCardHistory() {
'_token': csrf_token()
})
.then(response => {
- if (response.errCode != 0) {
- Nova.error('Barlap bolmady, tor näsazlygy')
- }
+ console.log({a: response})
+ // if (response.errCode != 0) {
+ // Nova.error('Barlap bolmady, tor näsazlygy')
+ // }
- cardHistoryDetailContainer.innerHTML = `
- Şahamça: ${response.depName}
+ // cardHistoryDetailContainer.innerHTML = `
+ // Şahamça: ${response.depName}
-
-
- ${Array.from(response.transactions).map(transaction => {
- return 'hello';
- })}
-
-
- `;
+ //
+ //
+ // ${Array.from(response.transactions).map(transaction => {
+ // return 'hello';
+ // })}
+ //
+ //
+ // `;
})
}