*/ protected $helpers = ['svg', 'components', 'misc', 'seo']; public function follow(): string { // Prevent analytics hit when authenticated if (! auth()->loggedIn()) { // @phpstan-ignore-next-line $this->registerPodcastWebpageHit($this->actor->podcast->id); } helper(['form', 'components', 'svg']); $data = [ // @phpstan-ignore-next-line 'metatags' => get_follow_metatags($this->actor), 'actor' => $this->actor, ]; return view('podcast/follow', $data); } }