From d936d4864172862db85f0458ed3cfeab7226ad40 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 28 Nov 2017 22:37:06 +0200 Subject: [PATCH] Adjust promotions --- app/Models/Company.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Company.php b/app/Models/Company.php index 5ad1a7f450d7..a6213ff2bf9e 100644 --- a/app/Models/Company.php +++ b/app/Models/Company.php @@ -189,7 +189,7 @@ class Company extends Eloquent public function applyDiscount($amount) { $this->discount = $amount; - $this->promo_expires = date_create()->modify('5 days')->format('Y-m-d'); + $this->promo_expires = date_create()->modify('3 days')->format('Y-m-d'); } public function applyFreeYear()