Eloquent::rightJoinWhere PHP Method

rightJoinWhere() public static method

Add a "right join where" clause to the query.
public static rightJoinWhere ( string $table, string $one, string $operator, string $two ) : Builder | static
$table string
$one string
$operator string
$two string
return Illuminate\Database\Query\Builder | static
        public static function rightJoinWhere($table, $one, $operator, $two)
        {
            return \Illuminate\Database\Query\Builder::rightJoinWhere($table, $one, $operator, $two);
        }
Eloquent