rss feed added

This commit is contained in:
HolgerHatGarKeineNode
2023-02-15 21:24:45 +01:00
parent e4eab97a8f
commit 83129009ec
3 changed files with 34 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Support;
use Spatie\Feed\FeedItem;
class CustomFeedItem extends FeedItem
{
protected string $content;
public function content(string $content): self
{
$this->content = $content;
return $this;
}
}