getCollection($collection); if ($collection === null) abort(404); $svgContent = $collection->getSvg(); if ($svgContent === null) abort(404); return response( $svgContent, 200, [ 'Content-Type' => 'image/svg+xml', ] ); } }