metas = json_decode($metas, true)['Metas']; } /** * Get the view / contents that represent the component. * * @return \Illuminate\Contracts\View\View|\Closure|string */ public function render() { foreach ($this->metas ?? [] as $meta) { Meta::set($meta['Name'], $meta['Content']); } return view('components.seo-meta-component'); } }