dealhub/routes/api/api.php
kusowl 1edfd7b9d4 feature(active users graph)
- users active is recorded when users logges in
- add active broker and active customer multi axis line chart
- add filter option of 30 days and 7 days
2026-02-02 16:25:12 +05:30

15 lines
422 B
PHP

<?php
use App\Http\Controllers\RecentSearchController;
use Illuminate\Support\Facades\Route;
Route::prefix('/api')
->middleware('auth')
->group(function () {
include __DIR__.'/interactions.php';
include __DIR__.'/deals.php';
include __DIR__.'/stats/stats.php';
Route::delete('/recent-search/{recentSearch}', RecentSearchController::class)->name('recent-search.destroy');
});