Files
web_work/app/Views/admin/dashboard.php
2026-01-03 18:59:56 +03:00

46 lines
1.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php $action = 'dashboard'; ?>
<h2>Дашборд</h2>
<div class="stats-grid">
<div class="stat-card">
<h3><?= $stats['total_products'] ?></h3>
<p>Всего товаров</p>
</div>
<div class="stat-card">
<h3><?= $stats['active_products'] ?></h3>
<p>Активных товаров</p>
</div>
<div class="stat-card">
<h3><?= $stats['total_orders'] ?></h3>
<p>Заказов</p>
</div>
<div class="stat-card">
<h3><?= $stats['total_users'] ?></h3>
<p>Пользователей</p>
</div>
<div class="stat-card">
<h3><?= number_format($stats['revenue'], 0, '', ' ') ?> ₽</h3>
<p>Выручка</p>
</div>
</div>
<div style="margin-top: 30px;">
<h3>Быстрые действия</h3>
<div style="display: flex; gap: 15px; margin-top: 15px; flex-wrap: wrap;">
<a href="/admin/products/add" class="btn btn-success">
<i class="fas fa-plus"></i> Добавить товар
</a>
<a href="/admin/categories/add" class="btn btn-primary">
<i class="fas fa-plus"></i> Добавить категорию
</a>
<a href="/admin/orders" class="btn btn-primary">
<i class="fas fa-shopping-cart"></i> Просмотреть заказы
</a>
<a href="/catalog" class="btn btn-primary">
<i class="fas fa-store"></i> Перейти в каталог
</a>
</div>
</div>