$itemsPage */ public function __construct($resource, private readonly array $itemsPage) { parent::__construct($resource); } /** @return array */ public function toArray(Request $request): array { return [ 'id' => $this->id, 'title' => $this->group_name, 'layout' => $this->product_layout->value, 'group_order' => $this->group_order, 'items' => $this->itemsPage, ]; } }