10-04-2026
This commit is contained in:
parent
4d6b4930b2
commit
4bb89aad8c
836 changed files with 52961 additions and 5950 deletions
23
app/Livewire/Web/Components/Sections/ImageBreak.php
Normal file
23
app/Livewire/Web/Components/Sections/ImageBreak.php
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?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');
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue