0
Hello,
I need to get the description of my parent category, but I can’t get the description in the same select, I can only get the id of the parent category.
I have a table with the following structure
Below is the code that I am getting my products and the category that it is linked to, also get the code of the parent category, but how will I get the description of the parent category?
public static function getMovimentos() {
return DB::table('movimentos')
->join('produtos', 'produtos.id', '=', 'movimentos.id_produto')
->join('categorias', 'categorias.id', '=', 'produtos.categoria_id')
->select('movimentos.id as id',
'categorias.nome as desc_sub',
'categorias.id_categoria as id_sub',
'produtos.categoria_id as categoria_id',
'produtos.id as idProduto',
'movimentos.tipo_movimento as tipo_movimento',
'movimentos.observacoes as observacoes',
'movimentos.quantidade as quantidade',
'movimentos.id_produto as id_produto',
'movimentos.serie as serie',
'movimentos.created_at as data_criacao',
'produtos.descricao as descricao',
'produtos.codigo_alternativo as codigo_alternativo')
->where('movimentos.id_estoque', '=', session()->get('session_estoque_id'))
->get();
}
Possible duplicate of Self relationship in Group table with Laravel and Eloquent?
– novic