- 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
15 lines
422 B
PHP
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');
|
|
});
|