Browsing index pages (3 articles)
↧
Display 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 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 ArticleAnswer 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 Article
Browsing index pages (3 articles)