In Laravel, Eloquent relationships are a powerful feature that allows you to define the associations between different database tables and models. 

Type Of Relationship:

S. No.RelationshipMethod
1One To OnehasOne()
2One To ManyhasMany()
3Many To OnebelongsTo()
4Many To ManybelongsToMany()
5Has Many ThroughhasManyThrough()
6PolymorphicmorphTo(), morphMany()