fix: add equal for today

This commit is contained in:
2025-12-13 17:30:49 +03:30
parent 4fbb325d7d
commit 536b34f40e
+1 -1
View File
@@ -43,7 +43,7 @@ public function handle(): int
->orWhere('repeatable', true)
->where(function ($inner) use ($now) {
$inner->whereNull('last_repeat')
->orWhereDate('last_repeat', '<', $now->toDateString());
->orWhereDate('last_repeat', '<=', $now->toDateString());
});
});
})