*/ public function toArray(Request $request): array { $lang = $request->header('Accept-Language') ?? 'ru'; return [ 'title' => $this->title[$lang], 'logo' => $this->getLogo(), 'slug' => $this->slug, 'description' => $this->description ? $this->description[$lang] : null, ]; } }