belongsTo(Voucher::class); } public function voucherEvent(){ return $this->belongsTo(VoucherEvent::class); } public function gets(){ return $this->hasMany(LuckyWheelGet::class,"prize_id") ->whereDate("created_at", Carbon::now()); } }