40 lines
761 B
PHP
40 lines
761 B
PHP
<?php
|
|
/**
|
|
* SlideShow.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-07-08 15:23:18
|
|
* @modified 2022-07-08 15:23:18
|
|
*/
|
|
|
|
namespace Beike\Shop\View\DesignRender;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class SlideShow extends Component
|
|
{
|
|
/**
|
|
* Create a new component instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($modules)
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*
|
|
* @return View|
|
|
*/
|
|
public function render(): View
|
|
{
|
|
|
|
return view('design.module.slideshow.render.index');
|
|
}
|
|
}
|