×
@lang('modules.payments.paymentDetails')
@forelse($invoice->payment as $payment)
@lang('app.paymentOn'): {{ $payment->paid_on->format($global->date_format) }}
@lang('app.amount'):
{{$invoice->currency->currency_symbol}} {{$payment->amount}}
@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