From ecbe609961f4af3fe8fcc5940f3bc701a74c0573 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 29 Apr 2018 10:44:22 +0300 Subject: [PATCH] Check for pro plan for client messages --- resources/views/clients/edit.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/clients/edit.blade.php b/resources/views/clients/edit.blade.php index 42124b5afaf8..255861cac00e 100644 --- a/resources/views/clients/edit.blade.php +++ b/resources/views/clients/edit.blade.php @@ -204,7 +204,7 @@
  • {{ trans('texts.notes') }}
  • - @if (Utils::isPro()) + @if (Utils::isPaidPro())
  • {{ trans('texts.messages') }}
  • @@ -246,7 +246,7 @@ {!! Former::textarea('public_notes')->rows(6) !!} {!! Former::textarea('private_notes')->rows(6) !!} - @if (Utils::isPro()) + @if (Utils::isPaidPro())
    @foreach (App\Models\Account::$customMessageTypes as $type) {!! Former::textarea('custom_messages[' . $type . ']')