i have a laravel project where I need to print a pdf. I made the printing without problems, using a library DOMPDF, but inside the pdf i need to print a content of a Rich Text Area.
The UI:
The output is
Note
<p><b>Test</b></p><p><b><br></b></p><ul><li><b>Test 1</b></li><li><b>Test 2</b></li></ul><p><br></p>
The blade page have:
<div class="row">
<div class="col-xs-12">
<h4>Note</h4>
{{$plan->note}}
</div>
</div>
How can i print the html content correctly?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…