↧
Answer by user3065326 for Display RSS feed with Laravel PHP using SimpleXML
@foreach ($flux->channel->item as $flu)<article class="entry-item"><img src="{{utf8_decode((string)$flu->enclosure['url'])}}" alt=""><div class="entry-content"><a href="{{...
View ArticleAnswer by ddjikic for Display RSS feed with Laravel PHP using SimpleXML
try this @foreach ($flux[0]->item->link as $item)<article class="entry-item"><img src="{{utf8_decode((string)$item->enclosure['url'])}}" alt=""><div...
View ArticleDisplay RSS feed with Laravel PHP using SimpleXML
I want to display a RSS feed, keeping it as simple as possible.I am using Laravel 4.Here is my controller :public function getHome(){ $content =...
View Article