これは私のコードです:
$html = $this->renderView('@App/pdf/default.html.twig', [
'item' => $item
]);
return new PdfResponse(
$this->get('knp_snappy.pdf')->getOutputFromHtml($html),
StringManipulation::slugify($item->getName()) . '.pdf'
);
これは、リンクではなく、テキストのようなpdfファイルのタグを表示します。どうすればリンクとして作成できますか?