diff --git a/resources/views/accounts/templates_and_reminders.blade.php b/resources/views/accounts/templates_and_reminders.blade.php index aeb49da33286..54969947a1a2 100644 --- a/resources/views/accounts/templates_and_reminders.blade.php +++ b/resources/views/accounts/templates_and_reminders.blade.php @@ -150,11 +150,13 @@ @if ($account->custom_invoice_text_label2)
  • $customInvoice1
  • @endif - @if (count($account->account_gateways) > 1) + @if (count($account->account_gateways) > 0) @foreach (\App\Models\Gateway::$gatewayTypes as $type) @if ($account->getGatewayByType($type)) -
  • ${{ Utils::toCamelCase(\App\Models\GatewayType::getAliasFromId($type)) }}Link
  • -
  • ${{ Utils::toCamelCase(\App\Models\GatewayType::getAliasFromId($type)) }}Button
  • + @if ($type != GATEWAY_TYPE_TOKEN) +
  • ${{ Utils::toCamelCase(\App\Models\GatewayType::getAliasFromId($type)) }}Link
  • +
  • ${{ Utils::toCamelCase(\App\Models\GatewayType::getAliasFromId($type)) }}Button
  • + @endif @endif @endforeach @endif