<?= '<?xml version="1.0" encoding="UTF-8"?>'.PHP_EOL ?>
<rss version="2.0"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:wfw="http://wellformedweb.org/CommentAPI/"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
     xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
     xmlns:georss="http://www.georss.org/georss"
     xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
>
    <channel>
        <title><![CDATA[ <?php echo e($configs['site_name']); ?> ]]></title>
        <atom:link href="<?php echo e($configs['feed_url']); ?>" rel="self" type="application/rss+xml" />
        <link><![CDATA[ <?php echo e($configs['site_url']); ?> ]]></link>
        <description><![CDATA[ <?php echo e($configs['site_name']); ?> ]]></description>
        <lastBuildDate>Mon, 08 Dec 2022 08:44:03 +0000</lastBuildDate>
        <language>ja</language>
        <pubDate><?php echo e(now()); ?></pubDate>
        <sy:updatePeriod>hourly</sy:updatePeriod>
        <sy:updateFrequency>1</sy:updateFrequency>
        <generator><?php echo e($configs['site_url']); ?></generator>

        <image>
            <url><?php echo e($configs['site_url']); ?>/favicon/favicon-32x32.png</url>
            <title><?php echo e($configs['site_name']); ?></title>
            <link><?php echo e($configs['site_url']); ?></link>
            <width>32</width>
            <height>32</height>
        </image>

        <atom:link rel="hub" href="https://pubsubhubbub.appspot.com"/>
        <atom:link rel="hub" href="https://pubsubhubbub.superfeedr.com"/>
        <site xmlns="com-wordpress:feed-additions:1">008122022</site>

        <?php $__currentLoopData = $posts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $post): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
            <item>
                <title><![CDATA[<?php echo e($post->title); ?>]]></title>
                <link><?php echo e($configs['site_url']); ?>/bbs/detail/<?php echo e($post->id); ?>/<?php echo e($post->slug); ?></link>
                <pubDate><?php echo e($post->created_at->toRssString()); ?></pubDate>
                <category><![CDATA[コラム]]></category>
                <guid><?php echo e($post->id); ?></guid>
                <description><![CDATA[<?php echo $post->description; ?>]]></description>
                <author><![CDATA[<?php echo e($configs['site_name']); ?>]]></author>
                <post-id xmlns="com-wordpress:feed-additions:1"><?php echo e($post->id); ?></post-id>
                <dc:creator><![CDATA[<?php echo e($configs['site_name']); ?>]]></dc:creator>
            </item>
        <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
    </channel>
</rss>
<?php /**PATH /var/www/html/moro/resources/views/rss/bbs.blade.php ENDPATH**/ ?>