kusowl d7c06c38a6 feature(deals by category pie chart):
- add a pie chart that shows deals by category
- change UI to make it more clear
2026-02-02 17:22:01 +05:30

9 lines
295 B
PHP

<?php
use App\Http\Controllers\StatsController;
Route::prefix('/stats')->group(function () {
Route::get('/active-users', [StatsController::class, 'getActiveUsers']);
Route::get('/deals-by-category', [StatsController::class, 'getDealsByCategory'])->name('stats.deals-by-category');
});