* @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); } }