From 9bbeddb913f542e6a340b1b30eeef155cdf9c103 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 13 Feb 2024 17:33:00 +1100 Subject: [PATCH] Improve templates --- app/Models/Account.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Models/Account.php b/app/Models/Account.php index 32b81723e4a2..382eec8692ee 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -296,6 +296,7 @@ class Account extends BaseModel public function isPremium(): bool { + // return true; return Ninja::isHosted() && $this->isPaidHostedClient() && !$this->isTrial() && Carbon::createFromTimestamp($this->created_at)->diffInMonths() > 2; }