Herkese Merhaba dostlar PaymentProduct tablosunda payment_id'si olan verileri Payment tablosunda payment_status ve mdStatus "1" olanları çekmek istiyorum böyle bir sorgu yazdım ama çalışmadı hata nerededir acaba tam olarak ?
Model İlişkisi
public function payment2()
{
return $this->hasOne(Payment::class, 'id', 'payment_id');
}
Sorgum
$show2=PaymentProduct::with('payment2')
->where('payment_id',$payment->payment_id)
->where(function ($q) {
return $q
->where('payment_status',1)
->where('mdStatus',1);
})
->get();