use eloquent and relationships. It makes it so much easier.
$event = Event::with('attendees','partners','speakers')->firstOrFail($id);
and then in the view
<p>{{$event->attendee->first_name }}</p>
<p>{{$event->partner->first_name }}</p>
<p>{{$event->speaker->first_name }}</p>
in your DB case, you need to add a where clause to the query, and specify the event id that you are interested in.
// edit sorry, my example is not quite right because I assume there can be multiple attendees and multiple partners and I don't know how you will relate those together