|
|
|
@ -0,0 +1,34 @@ |
|
|
|
<?php |
|
|
|
|
|
|
|
|
|
|
|
namespace App\Admin\Metrics\Examples; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use App\Models\LanzuCsInfo; |
|
|
|
use Dcat\Admin\Widgets\Metrics\Card; |
|
|
|
|
|
|
|
class TotalCommunity extends Card |
|
|
|
{ |
|
|
|
protected function init() |
|
|
|
{ |
|
|
|
parent::init(); |
|
|
|
$this->title = '社区总数'; |
|
|
|
$this->content(LanzuCsInfo::count()); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 渲染卡片内容. |
|
|
|
* |
|
|
|
* @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; |
|
|
|
} |
|
|
|
} |