Date Comparison Trouble in status change PHP

Solution 1:

You shouldn't compare date format like that. Either you use comparable format ie YYYY-MM-DD (Y-m-d)

date('Y-m-d',strtotime($result->DonationDate)) <= date('Y-m-d',strtotime($result->DonationDate. '+ 90 Days')))

Or just comparing the two strtotime()

strtotime($result->DonationDate) <= strtotime($result->DonationDate. '+ 90 Days')