@php
$createDate = $coupon->created_at;
// first, get the difference of create-date & today-date
$diff = $createDate->diffInDays($todayDate);
@endphp
{{-- then, get the human read-able value from those dates --}}
{{ $createDate->subDays($diff)->diffForHumans() }}