Размер файла: 757B
@extends('layout_rss')
@section('title', __('loads.rss_downs'))
@section('content')
@foreach ($downs as $down)
<?php $down->text = bbCode($down->text); ?>
<?php $down->text = str_replace('/uploads/stickers', asset('/uploads/stickers'), $down->text); ?>
<item>
<title>{{ $down->title }}</title>
<link>{{ route('downs.view', ['id' => $down->id]) }}</link>
<description>{{ $down->text }}</description>
<author>{{ $down->user->getName() }}</author>
<pubDate>{{ date('r', $down->created_at) }}</pubDate>
<category>{{ __('index.loads') }}</category>
<guid>{{ route('downs.view', ['id' => $down->id]) }}</guid>
</item>
@endforeach
@stop