I use the following code to display the number of active employees:
{{ $relatorio->Empresa->Funcionario->where('id_status', 1)->count() }}
How do I count only employees who are under the age of 18?
In the employee table I have the date of birth in the format date
"2000-09-23"