46 lines
1020 B
PHP
46 lines
1020 B
PHP
<?php
|
|
/**
|
|
* Render.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-07-08 17:09:15
|
|
* @modified 2022-07-08 17:09:15
|
|
*/
|
|
|
|
namespace Beike\Admin\View\DesignBuilders;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class SlideShowVideo extends Component
|
|
{
|
|
/**
|
|
* Create a new component instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*
|
|
* @return View
|
|
*/
|
|
public function render(): View
|
|
{
|
|
$data['register'] = [
|
|
'code' => 'slideshow_video',
|
|
'sort' => 0,
|
|
'name' => trans('admin/design_builder.module_slideshow_video'),
|
|
'icon' => '',
|
|
'style' => 'font-size: 40px;',
|
|
];
|
|
|
|
return view('admin::pages.design.module.slideshow_video', $data);
|
|
}
|
|
}
|