diff --git a/resources/assets/vue/components/wallets/elements/WalletComponent.vue b/resources/assets/vue/components/wallets/elements/WalletComponent.vue
index e2343899..247185ae 100644
--- a/resources/assets/vue/components/wallets/elements/WalletComponent.vue
+++ b/resources/assets/vue/components/wallets/elements/WalletComponent.vue
@@ -52,6 +52,11 @@
+
diff --git a/routes/web.php b/routes/web.php
index 11c727fb..a0fa52bc 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -77,7 +77,7 @@ Route::get('/customer/{marking}', function ($marking) {
Route::get('/customer/{marking}/transactions', function ($marking) {
$id = \App\Models\Company::where('reference', '=', $marking)->first()->id;
return view('pages.transactions.history', ['id' => $id]);
-})->name('transactions.history');
+})->name('account.statment');
Route::get('/payments', function () {
return view('pages.payments');