コード例 #1
0
ファイル: Auction.php プロジェクト: DriesVS/landoretti
 public static function getRandomAuctions($limit = 1)
 {
     return Auction::whereNull('buyer_id')->where('enddate', '>', Carbon::now())->orderByRaw("RAND()")->take($limit)->get();
 }