seo->collectionListing( 'Skinbase Web Stories', 'Explore Skinbase Web Stories featuring digital art Worlds, wallpapers, creator highlights, seasonal collections, and visual stories from the Skinbase community.', route('web-stories.index'), )->toArray(); } /** * @return array */ public function storyMeta(WorldWebStory $story): array { $title = $story->seoTitle(); $description = $story->seoDescription(); return [ 'title' => $title, 'description' => $description, 'canonical' => $story->publicUrl(), 'robots' => $story->noindex ? 'noindex,follow' : 'index,follow,max-image-preview:large', 'og_title' => $title, 'og_description' => $description, 'og_url' => $story->publicUrl(), 'og_image' => (string) $story->posterPortraitUrl(), 'twitter_title' => $title, 'twitter_description' => $description, 'twitter_image' => (string) $story->posterPortraitUrl(), ]; } }