Eloquent::mergeWheres PHP Method

mergeWheres() public static method

Merge an array of where clauses and bindings.
public static mergeWheres ( array $wheres, array $bindings ) : void
$wheres array
$bindings array
return void
        public static function mergeWheres($wheres, $bindings)
        {
            \Illuminate\Database\Query\Builder::mergeWheres($wheres, $bindings);
        }
Eloquent