@sanainfotech If you cast your date of birth field to a date, you can use Carbon to get the age:
@foreach ($users as $user)
{{ $user->date_of_birth->age }}
@endforeach
You cast the column to a date in your model:
class User extends Authenticatable
{
protected $casts = [
'date_of_birth' => 'date',
];
}