diff --git a/src/Models/News.php b/src/Models/News.php index 296aaf2..b1f74fa 100644 --- a/src/Models/News.php +++ b/src/Models/News.php @@ -42,7 +42,7 @@ public function toFeedItem(): FeedItem return FeedItem::create() ->id($this->id) ->title($this->title) - ->summary($this->summary) + ->summary($this->summary ?? '') ->updated($this->updated_at) ->link($this->uri()) ->authorName($this->author ?? config('app.name'));