First commit
This commit is contained in:
commit
7cf3558ba7
12933 changed files with 1180047 additions and 0 deletions
21
app/Livewire/Web/Components/Sections/CommitmentSection.php
Normal file
21
app/Livewire/Web/Components/Sections/CommitmentSection.php
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace App\Livewire\Web\Components\Sections;
|
||||
|
||||
use Livewire\Component;
|
||||
|
||||
class CommitmentSection extends Component
|
||||
{
|
||||
public $content = [];
|
||||
|
||||
public function mount()
|
||||
{
|
||||
$theme = config('app.theme', 'b2in');
|
||||
$this->content = config("content.themes.{$theme}.commitment_section", []);
|
||||
}
|
||||
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.web.components.sections.commitment-section');
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue