23 lines
493 B
PHP
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');
|
|
}
|
|
}
|