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

23 lines
493 B
PHP

<?php
namespace App\Livewire\Web\Components\Sections;
use Livewire\Component;
class ImageBreak extends Component
{
public array $content = [];
public string $section = 'about_image_break';
public function mount(string $section = 'about_image_break'): void
{
$this->section = $section;
$this->content = cms_theme_section($this->section);
}
public function render()
{
return view('livewire.web.components.sections.image-break');
}
}