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

23 lines
509 B
PHP

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