I have three table:
Teacher
id
name
family_name
ClassRoom
class_name
teacher_id
Student
name
family_name
Teacher have one to many relation with ClassRoom
Student have many to many relation with ClassRoom
how can i retrieve all Students of a Teacher using Eloquent methods without using foreach?