{{ trans('general.date') }}:
{{ trans_choice('general.accounts', 1) }}:
{{ trans_choice('general.categories', 1) }}:
{{ trans_choice('general.payment_methods', 1) }}:
{{ trans('general.reference') }}:
{{ trans('general.description') }}:
@date($transaction->paid_at)
{{ $transaction->account->name }}
{{ $transaction->category->name }}
{{ $payment_methods[$transaction->payment_method] }}
{{ $transaction->reference }}
{!! nl2br($transaction->description) !!}
{{ 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')