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