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

26 lines
544 B
PHP

<?php
namespace App\Livewire\Web\Components\Sections;
use Livewire\Component;
class EndCustomerSection extends Component
{
public $content = [];
public $bg = '';
public $section = '';
public function mount($bg = 'bg-accent', $section = 'end_customer_section')
{
$this->section = $section;
$this->bg = $bg;
$this->content = cms_theme_section('end_customer_section');
}
public function render()
{
return view('livewire.web.components.sections.end-customer-section');
}
}