what is the age of laravel code example
Example: how to calculate age in laravel
use Carbon\Carbon; // Include Class in COntroller
$request->date_of_birth = "2000-10-25";
$age = Carbon::parse($request->date_of_birth)->diff(Carbon::now())->y;
dd($age. " Years"); // To check result