Fixed missing payment_method portal page issue.. ( #8669navwf )
This commit is contained in:
parent
41acfee010
commit
b903691d16
@ -132,7 +132,11 @@
|
||||
</td>
|
||||
|
||||
<td valign="top" class="border-bottom-dashed-black" style="width:70%; margin: 0px; padding: 8px 0 0 0; font-size: 12px;">
|
||||
{{ !empty($payment_methods[$transaction->payment_method]) ? $payment_methods[$transaction->payment_method] : trans('general.na') }}
|
||||
@if (! empty($payment_methods[$transaction->payment_method]))
|
||||
{!! $payment_methods[$transaction->payment_method] !!}
|
||||
@else
|
||||
<x-empty-data />
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
|
@ -41,7 +41,11 @@
|
||||
</x-table.td>
|
||||
|
||||
<x-table.td class="w-4/12 sm:w-3/12">
|
||||
{{ $payment_methods[$item->payment_method] }}
|
||||
@if (! empty($payment_methods[$item->payment_method]))
|
||||
{!! $payment_methods[$item->payment_method] !!}
|
||||
@else
|
||||
<x-empty-data />
|
||||
@endif
|
||||
</x-table.td>
|
||||
|
||||
<x-table.td class="w-3/12" hidden-mobile>
|
||||
|
Loading…
x
Reference in New Issue
Block a user