header('Content-Description', 'File Transfer'); $response->header('Content-Type', static::mime(static::extension($path))); $response->header('Content-Disposition', 'attachment; filename="'.$name.'"'); $response->header('Content-Transfer-Encoding', 'binary'); $response->header('Expires', 0); $response->header('Cache-Control', 'must-revalidate, post-check=0, pre-check=0'); $response->header('Pragma', 'public'); $response->header('Content-Length', filesize($path)); return $response; } /** * Move an uploaded file to storage. * * @param string $key * @param string $path * @return bool */ public static function upload($key, $path) { return array_key_exists($key, $_FILES) ? move_uploaded_file($_FILES[$key]['tmp_name'], $path) : false; } }