b2in/app/Livewire/Web/Components/Sections/EcosystemHero.php
2026-04-10 17:18:17 +02:00

20 lines
366 B
PHP

<?php
namespace App\Livewire\Web\Components\Sections;
use Livewire\Component;
class EcosystemHero extends Component
{
public $content = [];
public function mount()
{
$this->content = cms_theme_section('ecosystem_hero');
}
public function render()
{
return view('livewire.web.components.sections.ecosystem-hero');
}
}