Quantcast
Channel: How to display image from an RSS Feed description using PHP Laravel - Stack Overflow
Viewing all articles
Browse latest Browse all 2

Answer by Christophe Hubert for How to display image from an RSS Feed description using PHP Laravel

$
0
0

You have HTML in your $item->description using the double Mustache{{ }} You are telling Laravel escape the data.

To render the HTML, you need to use instead {!! !!}

<div class="card-body">      {!! $item->description !!}</div>

You can see more in the doc here: https://laravel.com/docs/7.x/blade#displaying-data


Viewing all articles
Browse latest Browse all 2

Latest Images

Trending Articles





Latest Images