View file resources/views/blogs/rss_comments.blade.php

File size: 854B
@extends('layout_rss')

@section('title', $article->title)

@section('content')
    @foreach ($article->lastComments as $comment)
        <?php $comment->text = bbCode($comment->text); ?>
        <?php $comment->text = str_replace('/uploads/stickers', config('app.url').'/uploads/stickers', $comment->text); ?>

        <item>
            <title>{{ $comment->text }}</title>
            <link>{{ config('app.url') }}/articles/comments/{{ $article->id }}</link>
            <description>{{ $article->title }}</description>
            <author>{{ $comment->user->getName() }}</author>
            <pubDate>{{ date('r', $comment->created_at) }}</pubDate>
            <category>{{ __('main.comments') }}</category>
            <guid>{{ config('app.url') }}/articles/comment/{{ $article->id }}/{{ $comment->id }}</guid>
        </item>
    @endforeach
@stop