Help I need to calculate the age, I have the date of birth but I do not find the function, this is what I have
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12"">
<div class="form-group">
<label for="fecha_nacimiento">Fecha Nacimiento</label>
<p>{{ $alumno->fecha_nacimiento}}</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12"">
<div class="form-group">
<label for="edad">Edad</label>
<p>{{ Carbon::createFromDate($alumno->fecha_nacimiento)}}</p>
</div>
</div>
I tried with carbon but it does not give me the result, it throws me error, does anyone know how to use that function createFromDate ??