我的代码:
rss控制器:
公共职能指数() {
$data['posts'] = Post::orderBy('created_at','desc')->limit(10)->get();
return response()->view('feed.rss', $data, 200)->header('Content-Type', 'application/atom+xml; charset=UTF-8');
}
视图:
<?php echo '<?xml version="1.0" encoding="utf-8"?>';?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>title</title>
<subtitle>some subtitle</subtitle>
<link href="http://domain/feed"/>
<updated>{{ Carbon\Carbon::now()->toATOMString() }}</updated>
<author>
<name>Roger a</name>
</author>
<id></id>
@foreach($posts as $post)
<entry>
<title> {{$post->title}}</title>
<link>http://domainurl</link>
<id></id>
<updated>....</updated>
<summary>{{$post->sub_title}}</summary>
</entry>
@endforeach
</feed>