@lang('app.paymentOn'): {{ ($payment->paid_on!='') ?$payment->paid_on->format($global->date_format) :'' }}
@lang('app.invoice')
{{ (!is_null($payment->invoice_id)) ? $payment->invoice->invoice_number : "--"}}
@lang('app.project')
{{ (!is_null($payment->project_id) && !is_null($payment->project)) ? $payment->project->project_name : "--"}}
@lang('app.status')
@if ($payment->status == 'pending')
@else
@endif
@lang('app.amount')
@if($payment->currency != '')
{{currency_formatter($payment->amount,$payment->currency->currency_symbol)}}
@else
{{currency_formatter($payment->amount,'')}}
@endif
@lang('app.gateway')
{{$payment->gateway}}
@lang('app.transactionId')
{{$payment->transaction_id}}
@if(!is_null($payment->offline_method_id))
@lang('app.details')
{!! $payment->offlineMethod->name !!}
{!! $payment->offlineMethod->description !!}
@endif
@lang('app.remark')
{!! ($payment->remarks != '') ? ucfirst($payment->remarks) : "--" !!}