@stack('paid_at_input_start')
@if (!$hidePaidAt)
{{ trans($textPaidAt) }}:
|
@date($transaction->paid_at)
|
@endif
@stack('paid_at_input_end')
@stack('account_id_input_start')
@if (!$hideAccount)
{{ trans_choice($textAccount, 1) }}:
|
{{ $transaction->account->name }}
|
@endif
@stack('account_id_input_end')
@stack('category_id_input_start')
@if (!$hideCategory)
{{ trans_choice($textCategory, 1) }}:
|
{{ $transaction->category->name }}
|
@endif
@stack('category_id_input_end')
@stack('payment_method_input_start')
@if (!$hidePaymentMethods)
{{ trans_choice($textPaymentMethods, 1) }}:
|
{{ !empty($payment_methods[$transaction->payment_method]) ? $payment_methods[$transaction->payment_method] : trans('general.na') }}
|
@endif
@stack('payment_method_input_end')
@stack('reference_input_start')
@if (!$hideReference)
{{ trans($textReference) }}:
|
{{ $transaction->reference }}
|
@endif
@stack('reference_input_end')
@stack('description_input_start')
@if (!$hideDescription)
{{ trans($textDescription) }}:
|
{!! nl2br($transaction->description) !!}
|
@endif
@stack('description_input_end')
@if (!$hideContact)
{{ trans($textPaidBy) }}
|
@if ($hideContactInfo)
{{ trans($textContactInfo) }}
|
@endif
@stack('name_input_start')
@if (!$hideContactName)
{{ $transaction->contact->name }}
|
@endif
@stack('name_input_end')
@stack('address_input_start')
@if (!$hideContactAddress)
{!! nl2br($transaction->contact->address) !!}
|
@endif
@stack('address_input_end')
@stack('tax_number_input_start')
@if (!$hideContactTaxNumber)
@if ($transaction->contact->tax_number)
{{ trans('general.tax_number') }}: {{ $transaction->contact->tax_number }}
@endif
|
@endif
@stack('tax_number_input_end')
@stack('phone_input_start')
@if (!$hideContactPhone)
@if ($transaction->contact->phone)
{{ $transaction->contact->phone }}
@endif
|
@endif
@stack('phone_input_end')
@stack('email_start')
@if (!$hideContactEmail)
{{ $transaction->contact->email }}
|
@endif
@stack('email_input_end')
@endif