'Makler', 'description' => 'Lifetime-Vergütung', 'icon' => 'trending-up', ], [ 'title' => 'Lieferanten', 'description' => 'Globale Märkte', 'icon' => 'globe', ], [ 'title' => 'Partnership', 'description' => 'Faire Konditionen', 'icon' => 'handshake', ], [ 'title' => 'Erfolg', 'description' => 'Nachhaltiges Wachstum', 'icon' => 'award', ], ]; public $section = 'partner_hero'; public $content = []; public function mount($section = 'partner_hero') { $this->section = $section; $theme = config('app.theme', 'b2in'); $this->content = config("content.themes.{$theme}.{$this->section}", []); } public function render() { return view('livewire.web.components.sections.partner-hero', [ 'partnerTypes' => $this->partnerTypes ]); } }