*/ public function toArray(Request $request): array { $lang = $request->header('Accept-Language') ?? 'ru'; return [ 'id' => $this->id, 'name' => $this->name[$lang], 'image' => $this->getImage(), 'status' => new StatusResource($this->getStatus), 'description' => $this->description ? $this->description[$lang] : null, 'video_url' => isset($this->video_url) ? $this->video_url : null, 'is_price' => $this->is_price, ]; } }