strcmp($b['published'], $a['published'])); $items = array_map( fn (array $post) => [ 'title' => $post['title'], 'link' => '/blog/' . $post['slug'], 'guid' => '/blog/' . $post['slug'], 'pubDateTimestamp' => strtotime($post['published']), 'description' => $post['excerpt'], ], $posts ); $xml = Rss::render( $config['site_name'] . ' Blog', '/blog', 'Posts from ' . $config['site_name'] . '.', $items ); return Response::xml($xml);