exists() public method

Determine if any rows exist for the current query.
public exists ( ) : boolean
return boolean
Example #1
0
 /**
  * Determine if any rows exist for the current query.
  *
  * @return bool 
  * @static 
  */
 public static function exists()
 {
     return \Illuminate\Database\Query\Builder::exists();
 }