/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $dropboxes = Dropbox::all();
     return View::make('dropboxes.index', compact('dropboxes'));
 }