/**
  * Small preview of application
  * @param  [type] $id [description]
  * @return [type]     [description]
  */
 public function getView($id)
 {
     $application = \Application::findOrFail($id);
     return $this->render('application.view', ['application' => $application]);
 }