'Show date difference as "20" instead of "20 years ago"
{{Carbon::parse($etudiant->date_naissance)->diffForHumans()}}
It appears like "20 years ago". But I want the age to appear only "20"
Solution 1:[1]
Use ->diffInYears()
{{Carbon::parse($etudiant->date_naissance)->diffInYears()}}
For more informations, check the doc for the Difference section here
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | ml59 |