inRandomOrder() public method

Put the query's results in random order.
public inRandomOrder ( string $seed = '' )
$seed string
Example #1
0
 /**
  * Put the query's results in random order.
  *
  * @param string $seed
  * @return $this 
  * @static 
  */
 public static function inRandomOrder($seed = '')
 {
     return \Illuminate\Database\Query\Builder::inRandomOrder($seed);
 }