@lang('modules.payments.paymentDetails')

@forelse($creditNote->payment as $payment)
@lang('app.paymentOn'): {{ $payment->paid_on->format($global->date_format) }}

@lang('app.amount'):
{{currency_formatter($payment->amount,$creditNote->currency->currency_symbol)}}
@lang('app.gateway'):
{{$payment->gateway}}
@lang('app.transactionId'):
{{$payment->transaction_id}}
@lang('app.remark'):
{!! ($payment->remarks != '') ? ucfirst($payment->remarks) : "--" !!}

@empty

@lang('modules.payments.paymentDetailNotFound')

@endforelse