I have two models, User and Event. I made a pivot table, invitations between User and Event with a status column. In my Event model definition, I w
invitations
status
where should come before with. This is what eloquent expects.
where
with
It should be like this:
$event = Event::with(['owner', 'participants'])->where('id', $id)->first();