podcast); } public static function collection($resource): PodcastResourceCollection { return PodcastResourceCollection::make($resource); } /** @inheritdoc */ public function toArray(Request $request): array { $data = [ 'type' => 'podcast', 'id' => $this->podcast->id, 'url' => $this->podcast->url, 'title' => $this->podcast->title, 'image' => $this->podcast->image, 'link' => $this->podcast->link, 'description' => $this->podcast->description, 'author' => $this->podcast->author, ]; if ($this->withSubscriptionData) { /** @var User $user */ $user = $request->user(); /** @var PodcastUserPivot $pivot */ $pivot = $this->podcast->subscribers->sole('id', $user->id)->pivot; $data['subscribed_at'] = $pivot->created_at; $data['state'] = $pivot->state->toArray(); } return $data; } }