diff --git a/app/Models/Coupon.php b/app/Models/Coupon.php index 20657db5..01133f4a 100644 --- a/app/Models/Coupon.php +++ b/app/Models/Coupon.php @@ -54,7 +54,7 @@ class Coupon extends Model } if (!is_null($this->expires_at)) { - if ($this->expires_at <= Carbon::now()->timestamp) { + if ($this->expires_at <= Carbon::now(config('app.timezone'))->timestamp) { return __('EXPIRED'); } }