Eloquent::orWhereExists PHP Method

orWhereExists() public static method

Add an or exists clause to the query.
public static orWhereExists ( Closure $callback, boolean $not = false ) : Builder | static
$callback Closure
$not boolean
return Illuminate\Database\Query\Builder | static
        public static function orWhereExists($callback, $not = false)
        {
            return \Illuminate\Database\Query\Builder::orWhereExists($callback, $not);
        }
Eloquent