Level 3
Hi,
Eloquent uses Carbon objects, please read the answer from this post. Here you can read that Carbon objects have a bunch of comparison functions.
Than what you probably want is to compare the date from when someone last time he donor-ed blood with the current date minus four months.
So you have a $dateLastTime and a $currentDateMinusFourMonths
You can compare these two
$dateLastTime->lte($currentDateMinusFourMonths);
I hope this will help you.