$this->id, 'images' => array_map(function ($image) { return thumbnail($image); }, $this->images ?? []), 'name' => $this->description->name ?? '', 'price_formatted' => $this->price_formatted, 'active' => $this->active, 'position' => $this->position, 'created_at' => (string)$this->created_at, 'deleted_at' => (string)$this->deleted_at, 'url_edit' => admin_route('products.edit', $this->id), ]; return $data; } }