Skip to content

Commit

Permalink
added card text..
Browse files Browse the repository at this point in the history
  • Loading branch information
cuneytsenturk committed Aug 7, 2021
1 parent 05120a9 commit 0289cb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions resources/lang/en-GB/accounts.php
Expand Up @@ -10,6 +10,8 @@
'bank_phone' => 'Bank Phone',
'bank_address' => 'Bank Address',
'default_account' => 'Default Account',
'incoming' => 'Incoming',
'outgoing' => 'Outgoing',
'see_performance' => 'See Performance',
'create_report' => 'If you want to see account performance. You can create Income vs Expense report instance.',

Expand Down
4 changes: 2 additions & 2 deletions resources/views/banking/accounts/show.blade.php
Expand Up @@ -133,7 +133,7 @@
<div class="card-body">
<div class="row">
<div class="col">
<h5 class="text-uppercase text-muted mb-0 text-white">{{ trans('general.incoming') }}</h5>
<h5 class="text-uppercase text-muted mb-0 text-white">{{ trans('accounts.incoming') }}</h5>
<div class="dropdown-divider"></div>
<span class="h2 font-weight-bold mb-0 text-white">@money($account->income_balance, $account->currency_code, true)</span>
</div>
Expand All @@ -149,7 +149,7 @@
<div class="card-body">
<div class="row">
<div class="col">
<h5 class="text-uppercase text-muted mb-0 text-white">{{ trans('widgets.outgoing') }}</h5>
<h5 class="text-uppercase text-muted mb-0 text-white">{{ trans('accounts.outgoing') }}</h5>
<div class="dropdown-divider"></div>
<span class="h2 font-weight-bold mb-0 text-white">@money($account->expense_balance, $account->currency_code, true)</span>
</div>
Expand Down

0 comments on commit 0289cb3

Please sign in to comment.