Skip to content

Commit 45736fe

Browse files
Merge pull request #375 from amit-webkul/new
Fixed Issue #372
2 parents 390e473 + a264038 commit 45736fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Routes/V1/Admin/reporting-routes.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
* Customer routes.
2424
*/
2525
Route::controller(CustomerController::class)->prefix('customers')->group(function () {
26-
Route::get('stats', 'stats')->name('admin.reporting.customers.stats');
26+
Route::get('stats', 'stats');
2727
});
2828

2929
/**
3030
* Product routes.
3131
*/
3232
Route::controller(ProductController::class)->prefix('products')->group(function () {
33-
Route::get('stats', 'stats')->name('admin.reporting.products.stats');
33+
Route::get('stats', 'stats');
3434
});
3535
});

0 commit comments

Comments
 (0)