In this small tutorial, i will show you how to calculate age from date using carbon in laravel 5 application.
If you work on big web application then you might be sometime require to age calculate from date of birth. Like your birth date is around 02/07/1994 and today date like 10/9/2018 then it should be return 24 years old you are.
So, you can simply age calculation by using laravel carbon. So just see example:
Example:
$dateOfBirth = '1994-07-02';
$years = \Carbon::parse($dateOfBirth)->age;
dd($years);
I hope it can help you...