How to easily compare dates with Carbon in Laravel
Categorized as Laravel
Hello, friends. Did you know that you don’t have to compare dates yourself to check if it’s in the past or in the future. Use Carbon library methods isFuture
and isPast
for that:
if($promo->activeUntil->isFuture()) {
// do some promo code
}
if($account->activeUntil->isPast()) {
// do some account renewal code
}