<?php
// phpcs:disable
namespace App\View\Components;
use Illuminate\View\Component;
class Testimonial extends Component
{
// phpcs:enable
public $testimonials, $sliderClass;
public function __construct($testimonials, $sliderClass)
{
$this->testimonials = $testimonials;
$this->sliderClass = $sliderClass;
}
public function render()
{
return view('components.testimonial');
}
}