Merge pull request #992 from openclassify/muammertop

#3539 igam talepler 12.03
This commit is contained in:
Fatih Alp 2021-03-12 23:08:37 +03:00 committed by GitHub
commit 84a9a5fa29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ class AdvCollection extends EntryCollection
{
return $this->filter(
function ($ad) {
return $ad->finish_at->gt(Carbon::now());
return $ad->where('finish_at', '>', Carbon::now());
}
);
}