27 lines
494 B
PHP
27 lines
494 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Web\Components\Sections;
|
|
|
|
use Livewire\Component;
|
|
|
|
class FAQ extends Component
|
|
{
|
|
public $content = [];
|
|
|
|
public $bg = '';
|
|
|
|
public $section = '';
|
|
|
|
public function mount($bg = 'bg-background', $section = 'faq')
|
|
{
|
|
$this->bg = $bg;
|
|
$this->section = $section;
|
|
|
|
$this->content = cms_theme_section($this->section);
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.web.components.sections.f-a-q');
|
|
}
|
|
}
|