Просмотр файла resources/views/blogs/rss_comments.blade.php

Размер файла: 858B
@extends('layout_rss')

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

@section('content')
    @foreach ($article->lastComments as $comment)
        @php
            $comment->text = bbCode($comment->text);
            $comment->text = str_replace('/uploads/stickers', asset('/uploads/stickers'), $comment->text);
        @endphp

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