It is good to set the application's timezone.

This commit is contained in:
Ferks-FK 2023-05-18 19:52:26 +00:00 committed by IceToast
parent 640468acbe
commit bad9d0ec12

View file

@ -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');
}
}