getFile($coverType['id']); if (Config::get('app.sendfile')) { $response->header('X-Sendfile', $filename); } else { $response->header('X-Accel-Redirect', $filename); } $response->header('Content-Disposition', 'filename="' . $filename . '"'); $response->header('Content-Type', 'image/png'); return $response; } }