Added Admin Customer Statistics
This commit is contained in:
48
Layout/default/Admin/CustomerStatistics.php
Normal file
48
Layout/default/Admin/CustomerStatistics.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php include(realpath(dirname(__FILE__)."/../../$mfLayoutPackage")."/header.php"); ?>
|
||||
|
||||
<!-- start page title -->
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="page-title-box">
|
||||
<div class="page-title-right">
|
||||
<ol class="breadcrumb m-0">
|
||||
<li class="breadcrumb-item"><a href="<?=self::getUrl("Dashboard")?>"><?=MFAPPNAME_SLUG?></a></li>
|
||||
<li class="breadcrumb-item"><a href="<?=self::getUrl("Admin")?>">Admin</a></li>
|
||||
<li class="breadcrumb-item active">Kundenstatistiken</li>
|
||||
</ol>
|
||||
</div>
|
||||
<h4 class="page-title">Kundenstatistiken</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end page title -->
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12 col-xl-10">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="row col-6">
|
||||
<table class="table">
|
||||
<tr>
|
||||
<th>Xinon Kunden gesamt:</th>
|
||||
<td><?=$xinon_active_customers_total?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Xinon Kunden Business:</th>
|
||||
<td><?=$xinon_active_customers_business?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Xinon Kunden Privat:</th>
|
||||
<td><?=$xinon_active_customers_private?></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<?php include(realpath(dirname(__FILE__)."/../../$mfLayoutPackage")."/footer.php"); ?>
|
||||
Reference in New Issue
Block a user