rightJoinWhere() public method

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