@stack('company_logo_start') @if (!$hideCompanyLogo) @if (!empty($document->contact->logo) && !empty($document->contact->logo->id)) {{ $document->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')

{{ trans('invoices.revenue_made') }}

{{ 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')
{{ trans('general.amount') }}
@money($transaction->amount, $transaction->currency_code, true)
@if ($transaction->document)

{{ trans('invoices.related_revenue') }}

{{ trans_choice('general.numbers', 1) }} {{ trans_choice('general.customers', 1) }} {{ trans('invoices.invoice_date') }} {{ trans('invoices.invoice_date') }} {{ trans('general.amount') }}
{{ $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