joinWhere() public method

Add a "join where" clause to the query.
public joinWhere ( string $table, string $one, string $operator, string $two, string $type = 'inner' ) : Builder | static
$table string
$one string
$operator string
$two string
$type string
return Builder | static
Example #1
1
 /**
  * Add a "join where" clause to the query.
  *
  * @param string $table
  * @param string $one
  * @param string $operator
  * @param string $two
  * @param string $type
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function joinWhere($table, $one, $operator, $two, $type = 'inner')
 {
     return \Illuminate\Database\Query\Builder::joinWhere($table, $one, $operator, $two, $type);
 }