You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
307 B
20 lines
307 B
<?php
|
|
|
|
|
|
namespace App\Admin\Metrics\Examples;
|
|
|
|
use Dcat\Admin\Widgets\Metrics\Card;
|
|
|
|
/**
|
|
* 服务商数据
|
|
* Class MmInfo
|
|
* @package App\Admin\Metrics\Examples
|
|
*/
|
|
class MmInfo extends Card
|
|
{
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
$this->title('服务商卡片数据');
|
|
}
|
|
}
|