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. | Relationship | Method |
| 1 | One To One | hasOne() |
| 2 | One To Many | hasMany() |
| 3 | Many To One | belongsTo() |
| 4 | Many To Many | belongsToMany() |
| 5 | Has Many Through | hasManyThrough() |
| 6 | Polymorphic | morphTo(), morphMany() |