You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to load pivot relations on a model instance?
Taking the example on the README, say you have a controller method:
public function index(Plan $plan)
{
}
It would be great to be able to do something like: $plan->load('items.planItem.unit');
or better yet: $items = $plan->items()->orderBy('name')->with('planItem.unit')->get();
to return that to the view