crossJoin() public method

Add a "cross join" clause to the query.
public crossJoin ( string $table, string $first = null, string $operator = null, string $second = null ) : Builder | static
$table string
$first string
$operator string
$second string
return Builder | static
Beispiel #1
0
 /**
  * Add a "cross join" clause to the query.
  *
  * @param string $table
  * @param string $first
  * @param string $operator
  * @param string $second
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function crossJoin($table, $first = null, $operator = null, $second = null)
 {
     return \Illuminate\Database\Query\Builder::crossJoin($table, $first, $operator, $second);
 }
Beispiel #2
0
 /**
  * Add a "cross join" clause to the query.
  *
  * @param string $table
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function crossJoin($table)
 {
     return \Illuminate\Database\Query\Builder::crossJoin($table);
 }