b2in/app/Livewire/Web/Components/Sections/EcosystemStats.php
2025-10-20 17:50:35 +02:00

21 lines
432 B
PHP

<?php
namespace App\Livewire\Web\Components\Sections;
use Livewire\Component;
class EcosystemStats extends Component
{
public $content = [];
public function mount()
{
$theme = config('app.theme', 'b2in');
$this->content = config("content.themes.{$theme}.ecosystem_stats", []);
}
public function render()
{
return view('livewire.web.components.sections.ecosystem-stats');
}
}