$productEducationDate= ProductPriceEducation::with(
'productPrice'
)
->whereDate('date', '<=', Carbon::now()->toDateString())
->whereIn('product_price_id', ProductPrice::whereHas('product', function ($q) {
return $q->where('pre_register', 1);
}))
->get();
Merhaba dostlar Product tablosunda ki pre_register'ı 0 Olarak güncellemek istiyorum ama sadece bugünün tarihinden eski olanları kod da nasıl bir düzenleme yapmam gerekiyor acaba