$question = Questions::with('user')->where('id', '=', $id)->orderBy('id','DESC')->first();$comments = Comments::with('user')->where('question_id', '=', $id)->get();$randomQuestions = Questions::take(3)->orderBy(DB::raw('RAND()'))->get();Örneğin with,first,get,take Gibi Terimleri.Ayrıca MYSQL PDO'yu Nasıl Kullanabilirim, Hazırda Kullandığım PDO Class Dosyamı Nereden Include Etmem Gerekiyor?