Skip to content

Commit

Permalink
Merge pull request #375 from amit-webkul/new
Browse files Browse the repository at this point in the history
Fixed Issue #372
  • Loading branch information
devansh-webkul authored Sep 25, 2024
2 parents 390e473 + a264038 commit 45736fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Routes/V1/Admin/reporting-routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
* Customer routes.
*/
Route::controller(CustomerController::class)->prefix('customers')->group(function () {
Route::get('stats', 'stats')->name('admin.reporting.customers.stats');
Route::get('stats', 'stats');
});

/**
* Product routes.
*/
Route::controller(ProductController::class)->prefix('products')->group(function () {
Route::get('stats', 'stats')->name('admin.reporting.products.stats');
Route::get('stats', 'stats');
});
});

0 comments on commit 45736fe

Please sign in to comment.