Skip to content

Tag: relationships

How to load a nested relationship in Laravel

I have a model called CallbackRequest the model has a relationship with Loan model and that is the only relationship for CallbackRequest model. CallbackModel: Now Loan model itself has a relationship with a third model called Applicant. Loan Model: My point: When I load CallbackRequest I eagerload loan model …