/**
  * Show the list of the newcomers.
  *
  * @return Response
  */
 public function list()
 {
     return View::make('dashboard.newcomers.list', ['newcomers' => Newcomer::all(), 'branches' => Newcomer::distinct()->select('branch')->groupBy('branch')->get()]);
 }