*/ public function toArray(Request $request): array { return [ '@type' => 'Review', 'reviewBody' =>$this->body, 'datePublished' => $this->created_at, 'author' => [ '@type' => 'Person', 'name' => $this->commentator()['name'], ], ]; } }