Example #1
0
 /**
  * Papers and others files will be returned to professor
  *
  * @return boolean
  */
 private function download($professorName, $filePath)
 {
     $headers = array('Content-Type: application/zip');
     return Response::download($filePath, $professorName + ".zip", $headers);
 }