Birinci kullanım sorguları ve kodu uzatıyorken whereRelation ile bu işi 3 satır kod ile daha hızlı yapabiliyoruz.
$doctorsWithUsers = Doctor::with('doctorName')
->where('is_confirmed', true)
->whereHas('doctorName', function ($query) {
$query->whereNotNull('doctor_id');
})
->get();
$doctorsWithUsers = Doctor::where('is_confirmed', true)
->whereRelation('doctorName', 'doctor_id', '<>', null)
->get();