wyyl/beike/Admin/View/DesignBuilders/Image100.php

45 lines
944 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\View\Component;
use Illuminate\Contracts\View\View;
class Image100 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' => 'image100',
'sort' => 0,
'name' => trans('admin/design_builder.module_banner'),
'icon' => '&#xe663;',
];
return view('admin::pages.design.module.image100', $data);
}
}