I have a field in the database which store script tags and I want to implement those script tags into my HTML file but the problem is that data is coming string format
I am trying this
<div class="mb-auto">{{htmlentities($video->ifram)}}</div>
Desired output
<script id="154896_p_269505" width="1280" height="720" src="" class="dacast-video"></script>
But getting
"<script id="154896_p_269505" width="1280" height="720" src="https://player.dacast.com/js/player.js?contentId=154896_p_269505" class="dacast-video"></script>"
htmlentities()may be a start.