@stack('company_start') @if (!$hideCompany)
@stack('company_logo_start') @if (!$hideCompanyLogo) @if (!empty($transaction->contact->logo) && !empty($transaction->contact->logo->id)) {{ $transaction->contact->name }} @else {{ setting('company.name') }} @endif @endif @stack('company_logo_end')
@stack('company_details_start') @if (!$hideCompanyDetails) @if (!$hideCompanyName)

{{ setting('company.name') }}

@endif @if (!$hideCompanyAddress)

{!! nl2br(setting('company.address')) !!}

@endif @if (!$hideCompanyTaxNumber)

@if (setting('company.tax_number')) {{ trans('general.tax_number') }}: {{ setting('company.tax_number') }} @endif

@endif @if (!$hideCompanyPhone)

@if (setting('company.phone')) {{ setting('company.phone') }} @endif

@endif @if (!$hideCompanyEmail)

{{ setting('company.email') }}

@endif @endif @stack('company_details_end')
@endif @stack('company_end')
@if (!$hideContentTitle)

{{ trans($textContentTitle) }}

@endif
@if (!$hidePaidAt)

{{ trans($textPaidAt) }}:

@endif @if (!$hideAccount)

{{ trans_choice($textAccount, 1) }}:

@endif @if (!$hideCategory)

{{ trans_choice($textCategory, 1) }}:

@endif @if (!$hidePaymentMethods)

{{ trans_choice($textPaymentMethods, 1) }}:

@endif @if (!$hideReference)

{{ trans($textReference) }}:

@endif @if (!$hideDescription)

{{ trans($textDescription) }}:

@endif
@if (!$hidePaidAt)

@date($transaction->paid_at)

@endif @if (!$hideAccount)

{{ $transaction->account->name }}

@endif @if (!$hideCategory)

{{ $transaction->category->name }}

@endif @if (!$hidePaymentMethods)

{{ $payment_methods[$transaction->payment_method] }}

@endif @if (!$hideReference)

{{ $transaction->reference }}

@endif @if (!$hideDescription)

{!! nl2br($transaction->description) !!}

@endif
@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
@if (!$hideAmount)
{{ trans($textAmount) }}
@money($transaction->amount, $transaction->currency_code, true)
@endif
@if (!$hideReletad) @if ($transaction->document)

{{ trans($textReleatedTransansaction) }}

@if (!$hideReletadDocumentNumber) @endif @if (!$hideReletadContact) @endif @if (!$hideReletadDocumentDate) @endif @if (!$hideReletadDocumentAmount) @endif @if (!$hideReletadAmount) @endif @if (!$hideReletadDocumentNumber) @endif @if (!$hideReletadContact) @endif @if (!$hideReletadDocumentDate) @endif @if (!$hideReletadDocumentAmount) @endif @if (!$hideReletadAmount) @endif
{{ trans_choice($textReleatedDocumentNumber, 1) }} {{ trans_choice($textReleatedContact, 1) }} {{ trans($textReleatedDocumentDate) }} {{ trans($textReleatedDocumentAmount) }} {{ trans($textReleatedAmount) }}
{{ $transaction->document->document_number }} {{ $transaction->document->contact_name }} @date($transaction->document->due_at) @money($transaction->document->amount, $transaction->document->currency_code, true) @money($transaction->amount, $transaction->currency_code, true)
@else

{{ trans('invoices.overdue_revenue') }}: @money($transaction->amount, $transaction->currency_code, true)

@endif @endif