diff --git a/resources/views/banking/transactions/index.blade.php b/resources/views/banking/transactions/index.blade.php
index e685caf89..7218078c9 100644
--- a/resources/views/banking/transactions/index.blade.php
+++ b/resources/views/banking/transactions/index.blade.php
@@ -46,14 +46,20 @@
{{ trans_choice('general.' . Str::plural($item->type), 1) }} |
{{ $item->category->name }} |
{{ $item->description }} |
- @if(is_null(data_get($item, 'bill.id')))
- @money($item->amount, $item->currency_code, true) |
- @else
+ @if(!is_null(data_get($item, 'bill.id')))
@money($item->amount, $item->currency_code, true)
|
+ @elseif(!is_null(data_get($item, 'invoice.id')))
+
+
+ @money($item->amount, $item->currency_code, true)
+
+ |
+ @else
+ @money($item->amount, $item->currency_code, true) |
@endif
@endforeach