Hey, is it possible to get the number of days that have passed since a given timestamp, but only the value? Carbon's difference for humans does this, but it returns "x days ago" instead of the value only.
The diffForHumans
method removes the ago, after, etc. if you pass false as the second parameter.
If you literally just want days and not hours, minutes, etc., then you can do something like this.
$diffInDays = $model->some_timestamp->diffInDays();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community