fixed account list page bank phone show issue

This commit is contained in:
Cihan Şentürk 2023-10-18 15:04:41 +03:00 committed by GitHub
parent 738fbd84fa
commit b0adafeb90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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>
@ -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