Closed adibnaya closed 5 years ago
return Carbon::now()->gt($this->valid_until) or Carbon::now()->eq($this->valid_until);
Carbon has gte function, Why not use it?
return Carbon::now()->gt($this->valid_until) or Carbon::now()->eq($this->valid_until);
Carbon has gte function, Why not use it?