{{ trans('texts.template_help_title') }}

{{ trans('texts.client_variables') }}

    @foreach([ 'client', 'contact', 'firstName', 'password', 'autoBill', ] as $field)
  • ${{ $field }}
  • @endforeach

{{ trans('texts.invoice_variables') }}

    @foreach([ 'number', 'amount', 'total', 'balance', 'partial', 'invoiceDate', 'dueDate', 'poNumber', 'terms', 'notes', 'documents', ] as $field)
  • ${{ $field }}
  • @endforeach

{{ trans('texts.company_variables') }}

    @foreach([ 'account', 'emailSignature', ] as $field)
  • ${{ $field }}
  • @endforeach

{{ trans('texts.navigation_variables') }}

    @foreach([ 'viewLink', 'viewButton', 'paymentLink', 'paymentButton', 'approveLink', 'approveButton', 'portalLink', 'portalButton', ] as $field)
  • ${{ $field }}
  • @endforeach @foreach (\App\Models\Gateway::$gatewayTypes as $type) @if ($account->getGatewayByType($type)) @if ($type != GATEWAY_TYPE_TOKEN)
  • ${{ Utils::toCamelCase(\App\Models\GatewayType::getAliasFromId($type)) }}Link
  • ${{ Utils::toCamelCase(\App\Models\GatewayType::getAliasFromId($type)) }}Button
  • @endif @endif @endforeach
@if ($account->customLabel('client1') || $account->customLabel('contact1') || $account->customLabel('invoice_text1'))

{{ trans('texts.custom_variables') }}

    @if ($account->customLabel('client1'))
  • $customClient1
  • @endif @if ($account->customLabel('client2'))
  • $customClient2
  • @endif @if ($account->customLabel('contact1'))
  • $customContact1
  • @endif @if ($account->customLabel('contact2'))
  • $customContact2
  • @endif @if ($account->customLabel('invoice_text1'))
  • $customInvoice1
  • @endif @if ($account->customLabel('invoice_text2'))
  • $customInvoice2
  • @endif
@endif

{{ trans('texts.amount_variable_help') }}