27 lines
551 B
PHP
27 lines
551 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Web\Components\Sections;
|
|
|
|
use Livewire\Component;
|
|
|
|
class EcosystemCore extends Component
|
|
{
|
|
public $content = [];
|
|
|
|
public $bg = 'bg-background';
|
|
|
|
public $section = 'ecosystem_core';
|
|
|
|
public function mount($bg = 'bg-background', $section = 'ecosystem_core')
|
|
{
|
|
$this->bg = $bg;
|
|
$this->section = $section;
|
|
|
|
$this->content = cms_theme_section($this->section);
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.web.components.sections.ecosystem-core');
|
|
}
|
|
}
|