getCollection($collection); if ($collection === null) abort(404); $svgContent = $collection->getSvg(); if ($svgContent === null) abort(404); $cacheControl = ''; if ($request->query('v') && ($maxAge = $collection->getMaxAge()) > 0) { $cacheControl = "max-age={$maxAge}, public"; } else { $cacheControl = 'no-store, private'; } return response( $svgContent, 200, [ 'Content-Type' => 'image/svg+xml', 'Cache-Control' => $cacheControl, ] ); } }