Answers for "join where condition in laravel"

PHP
0

How to add a additional condition in a join using query builder laravel 5.3?

->leftJoin('table3 AS c', function($join){
        $join->on('a.field2', '=', 'c.field2')
        ->where('a.field2', '=', true)
        ->where('a.field3', '=', 'c.field3');
})
Posted by: Guest on June-23-2021

Code answers related to "join where condition in laravel"

Browse Popular Code Answers by Language