46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
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 Plugin\Bestseller\Admin\View\DesignBuilders;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class Bestseller 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' => 'bestseller',
|
|
'sort' => 0,
|
|
'name' => trans('Bestseller::common.module_name'),
|
|
'icon' => plugin_asset('Bestseller', 'image/icon.png'),
|
|
'view_path' => 'Bestseller::shop/design_module_bestseller',
|
|
];
|
|
|
|
return view('Bestseller::admin/design_module_bestseller', $data);
|
|
}
|
|
}
|