-1
I have the following query:
$empresas = DB::table('empresas')
->join('departamentos', 'empresas.id', '=', 'departamentos.empresas_id')
->join('eventos', 'eventos.departamentos_empresas_id', '=', 'eventos.id')
->select( 'empresas.name as empresa', 'departamentos.name as departamento','eventos.nome as evento'
)
->get();
That displays a table with the result:
Empresa: 1, Departamento:A, Quantidade de Eventos: , Número de Inscritos: ,
Empresa: 2, Departamento:A, Quantidade de Eventos: , Número de Inscritos: ,
Empresa: 3, Departamento:B, Quantidade de Eventos: , Número de Inscritos: ,
Empresa: 4, Departamento:C, Quantidade de Eventos: , Número de Inscritos: ,
And so on, I would like to know how to get the number of events and the number of subscribers in the same query.
Thanks for the answer, Douglas! In fact, the way you posted it works, changing the 'Strict' to false, in the "config/database". But I would really like a way to display the results, without modifying the config/database, because I read that this should be the last resort, for security reasons.
– user3425150