@if (!$hidePaidAt)
{{ trans('general.date') }}: |
@date($transaction->paid_at) |
@endif
@if (!$hideAccount)
{{ trans_choice('general.accounts', 1) }}: |
{{ $transaction->account->name }} |
@endif
@if (!$hideCategory)
{{ trans_choice('general.categories', 1) }}: |
{{ $transaction->category->name }} |
@endif
@if (!$hidePaymentMethods)
{{ trans_choice('general.payment_methods', 1) }}: |
{{ $payment_methods[$transaction->payment_method] }} |
@endif
@if (!$hideReference)
{{ trans('general.reference') }}: |
{{ $transaction->reference }} |
@endif
@if (!$hideDescription)
{{ trans('general.description') }}: |
{!! nl2br($transaction->description) !!}
|
@endif
@if (!$hideContact)
{{ trans('general.paid_by') }}
|
@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