Eloquent::exists PHP Method

exists() public static method

Determine if any rows exist for the current query.
public static exists ( ) : boolean
return boolean
        public static function exists()
        {
            return \Illuminate\Database\Query\Builder::exists();
        }
Eloquent