Skip to content

Commit

Permalink
fixed transfer payment method..
Browse files Browse the repository at this point in the history
  • Loading branch information
cuneytsenturk committed Jul 22, 2021
1 parent 3432a2c commit b3c5e15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
</td>

<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">
{{ $payment_methods[$transfer->expense_transaction->payment_method] }}
{{ !empty($payment_methods[$transfer->expense_transaction->payment_method]) ? $payment_methods[$transfer->expense_transaction->payment_method] : trans('general.na') }}
</td>
</tr>
@endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</td>

<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">
{{ $payment_methods[$transfer->expense_transaction->payment_method] }}
{{ !empty($payment_methods[$transfer->expense_transaction->payment_method]) ? $payment_methods[$transfer->expense_transaction->payment_method] : trans('general.na') }}
</td>
</tr>
@endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
</td>

<td class="border-bottom-1" style="width:80%; padding-bottom:3px; font-size:14px;">
{{ $payment_methods[$transfer->expense_transaction->payment_method] }}
{{ !empty($payment_methods[$transfer->expense_transaction->payment_method]) ? $payment_methods[$transfer->expense_transaction->payment_method] : trans('general.na') }}
</td>
</tr>
@endif
Expand Down

0 comments on commit b3c5e15

Please sign in to comment.