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.
|
|
<?php
namespace App\Admin\Metrics\Examples\ServiceCard;
use App\Models\LanzuMmInfo;use App\Models\LanzuMpInfo;use Dcat\Admin\Widgets\Metrics\Card;
class TotalMm extends Card{ protected function init() { parent::init(); $this->title = '市场经理数';
$this->content(LanzuMmInfo::getMmInfoCount()); }
/** * 渲染卡片内容 * @return string */ public function renderContent() { $content = parent::renderContent(); return <<<HTML<div class="d-flex justify-content-between align-items-center mt-1" style="margin-bottom: 2px"> <h2 class="ml-1 font-large-1">{$content}</h2></div>HTML; }}
|