{{ __('messages.payment.payment_details') }}

{{ Form::label('account', __('messages.account.account') . ':', ['class' => 'fw-bold text-muted py-3']) }} {{ $payment->account->name }}
{{ Form::label('payment_date', __('messages.payment.payment_date') . ':', ['class' => 'fw-bold text-muted py-3']) }} {{ \Carbon\Carbon::parse($payment->payment_date)->translatedFormat('jS M, Y') }}
{{ Form::label('pay_to', __('messages.payment.pay_to') . ':', ['class' => 'fw-bold text-muted py-3']) }} {{ $payment->pay_to }}
{{ Form::label('amount', __('messages.payment.amount') . ':', ['class' => 'fw-bold text-muted py-3']) }} {{ getCurrencySymbol() }} {{ number_format($payment->amount, 2) }}
{{ Form::label('created_at', __('messages.common.created_on') . ':', ['class' => 'fw-bold text-muted py-3']) }} {{ $payment->created_at->diffForHumans() }}
{{ Form::label('updated_at', __('messages.common.updated_at') . ':', ['class' => 'fw-bold text-muted py-3']) }} {{ $payment->updated_at->diffForHumans() }}
{{ Form::label('description', __('messages.common.description') . ':', ['class' => 'fw-bold text-muted py-3']) }} {!! $payment->description != '' ? nl2br(e($payment->description)) : __('messages.common.n/a') !!}