DONE: ignore db-dump folder in gitignore

This commit is contained in:
ISMAIL MASSERAN
2026-08-09 10:16:22 +08:00
committed by ISMAIL MASSERAN
parent e989f053c4
commit ac96050ed0
3 changed files with 6 additions and 3 deletions
Vendored
BIN
View File
Binary file not shown.
+1
View File
@@ -8,3 +8,4 @@ ray.php
/docker_src /docker_src
/.vscode /.vscode
**/.DS_Store **/.DS_Store
db-dump
+4 -2
View File
@@ -400,12 +400,14 @@ class VaultController extends Controller
} }
$bakiakhirVault = $vault ? $vault['bakiakhir'] : 0;
if($total != 0) if($total != 0)
{ {
$totalbakiakhirtunai = $vault['bakiakhir'] + $total; $totalbakiakhirtunai = $bakiakhirVault + $total;
}else }else
{ {
$totalbakiakhirtunai = $vault['bakiakhir']; $totalbakiakhirtunai = $bakiakhirVault;
} }
return response()->json($totalbakiakhirtunai); return response()->json($totalbakiakhirtunai);