Esempio n. 1
0
 public function viewUsers($id)
 {
     $rsvps = VolunteerEvent::with('rsvps')->where('id', '=', $id)->first();
     return View::make('events.users')->with('rsvps', $rsvps);
 }