“Junte -se a múltiplas consultas em Laravel” Respostas de código

Laravel eloquente múltiplo se junta a onde as condições

$users = User::join('posts', 'posts.user_id', '=', 'users.id')
            ->where('users.status', 'active')
            ->where('posts.status','active')
            ->get(['users.*', 'posts.descrption']);
inbloom

Junte -se a múltiplas consultas em Laravel

 $select->joinSub(
                    $selectSubQry,
                    'ag',
                    'ag.id',
                    '=',
                    'agp.userId'
                );
Prasanti Prusty

Respostas semelhantes a “Junte -se a múltiplas consultas em Laravel”

Perguntas semelhantes a “Junte -se a múltiplas consultas em Laravel”

Mais respostas relacionadas para “Junte -se a múltiplas consultas em Laravel” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código