mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 00:02:05 -04:00
20 lines
326 B
PHP
20 lines
326 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Illuminate\View\Component;
|
|
|
|
class SliderComponent extends Component
|
|
{
|
|
public $headers;
|
|
public function __construct($headers)
|
|
{
|
|
$this->headers = $headers;
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view(theme('components.slider-component'));
|
|
}
|
|
}
|