Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Bhinal Chauhan

Bhinal Chauhan

Bhinal Chauhan has asked 0 questions and find answers to 1 problems.

Stats

43
EtPoint
17
Vote count
0
questions
1
answers

About

$query = $table->find('all')->leftJoinWith('LeadStatus')->innerJoinWith('AssignedLeads')->contain(['AssignedLeads' => function($q) { return $q->contain(['Users']) ->where(['AssignedLeads.is_active' => 1]); }, 'Users', 'LeadStatus' => function($q) { return $q->contain(['LeadBuckets', 'LeadBucketSubStatus']) ->where(['LeadStatus.is_active' => 1]); }])->where(['Leads.sub_agent_id' => $subAgentId, 'OR' => [ 'AssignedLeads.user_id' => $userId, 'AssignedLeads.user_id IN' => $childUsers ] ]);

Bhinal Chauhan questions