From 3a65c8905c04e92beba9b4a4ec6a6565ea36a825 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 27 Nov 2016 17:02:07 +0200 Subject: [PATCH] Merge templates fix --- resources/views/accounts/templates_and_reminders.blade.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/resources/views/accounts/templates_and_reminders.blade.php b/resources/views/accounts/templates_and_reminders.blade.php index aeb49da332..b2d975b91f 100644 --- a/resources/views/accounts/templates_and_reminders.blade.php +++ b/resources/views/accounts/templates_and_reminders.blade.php @@ -153,8 +153,10 @@ @if (count($account->account_gateways) > 1) @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