new routes

This commit is contained in:
Ludovic CANDELLIER
2022-06-13 23:30:06 +02:00
parent 79c717ae6c
commit 8b334bc8ed
2 changed files with 8 additions and 2 deletions

View File

@@ -35,6 +35,7 @@
"geo6/geocoder-php-addok-provider": "^1.1",
"gzero/eloquent-tree": "^3.1",
"hassankhan/config": "^2.1",
"htmlmin/htmlmin": "^9.0",
"intervention/image": "^2.5",
"intervention/imagecache": "^2.4",
"jasonlewis/expressive-date": "^1.0",
@@ -66,6 +67,8 @@
"proengsoft/laravel-jsvalidation": "^4.5",
"qoraiche/laravel-mail-editor": "^3.2",
"rahul900day/laravel-captcha": "^1.0",
"ralphjsmit/laravel-seo": "^1.0",
"reedware/laravel-relation-joins": "^3.0",
"respect/validation": "^2.2",
"rinvex/laravel-categories": "^6.0",
"rinvex/laravel-tags": "^6.0",
@@ -78,12 +81,14 @@
"spatie/image-optimizer": "^1.4",
"spatie/laravel-activitylog": "^3.6",
"spatie/laravel-backup": "^7.0",
"spatie/laravel-cookie-consent": "^3.2",
"spatie/laravel-mail-preview": "^4.0",
"spatie/laravel-medialibrary": "^9.6",
"spatie/laravel-stats": "^1.0",
"spatie/laravel-stats": "^2.0",
"staudenmeir/belongs-to-through": "^2.11",
"staudenmeir/eloquent-has-many-deep": "^1.13",
"stillat/numeral.php": "^2.0",
"thomasjohnkane/snooze": "^2.2",
"toin0u/geocoder-laravel": "^4.2",
"unicodeveloper/laravel-password": "^1.0",
"voku/stringy": "^6.2",
@@ -106,6 +111,7 @@
"nunomaduro/collision": "^5.4",
"nunomaduro/larastan": "^0.7",
"nunomaduro/laravel-mojito": "^0.2.6",
"nunomaduro/phpinsights": "^2.2",
"orangehill/iseed": "^3.0",
"oscarafdev/migrations-generator": "^2.0",
"phpmetrics/phpmetrics": "^2.7",

View File

@@ -2,7 +2,7 @@
Route::prefix('Categories')->name('Categories.')->group(function () {
Route::get('', 'CategoryController@index')->name('index');
Route::get('show/{id}/{by_rows?}', 'CategoryController@show')->name('show');
Route::any('show/{id}', 'CategoryController@show')->name('show');
Route::get('getTree', 'CategoryController@getTree')->name('getTree');
});