Skip to content

Commit

Permalink
fixed account list page bank phone show issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CihanSenturk committed Oct 18, 2023
1 parent 738fbd8 commit b0adafe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/banking/accounts/index.blade.php
Expand Up @@ -45,7 +45,7 @@
<x-sortablelink column="bank_name" title="{{ trans('accounts.bank_name') }}" />
</x-slot>
<x-slot name="second">
<x-sortablelink column="bank_phone" title="{{ trans('general.phone') }}" />
<x-sortablelink column="bank_phone" title="{{ trans('accounts.bank_phone') }}" />
</x-slot>
</x-table.th>

Expand Down Expand Up @@ -88,8 +88,8 @@
@endif
</x-slot>
<x-slot name="second">
@if (! empty($item->phone))
{{ $item->phone }}
@if (! empty($item->bank_phone))
{{ $item->bank_phone }}
@else
<x-empty-data />
@endif
Expand Down

0 comments on commit b0adafe

Please sign in to comment.