查詢訂單付款超時的資料

冯元春發表於2024-11-19
$records = DB::table('order')
             ->where('buy_at', '<', Carbon::now()->subMinutes(50))
             ->get();

相關文章