/**
  * Show the application dashboard to the user.
  *
  * @return Response
  */
 public function index()
 {
     $member = $this->auth->user();
     $benodigdheid = Benodigd::find($member->benodigd_id);
     return view('member.benodigdheden.index', compact('member', 'benodigdheid'));
 }