change structure for webservice

This commit is contained in:
2025-09-27 15:31:21 +03:30
parent 971036e48f
commit ed922a1eaa
3 changed files with 24 additions and 10 deletions

View File

@@ -73,6 +73,12 @@ class RouteServiceProvider extends ServiceProvider
->middleware(['web', 'auth', 'confirmUser'])
->namespace($this->namespace)
->group(base_path('routes/v3.php'));
Route::prefix('webservice')
->name('webservice.')
->namespace($this->namespace)
->group(base_path('routes/webservices.php'));
Route::prefix('api')
->middleware('api')
->namespace($this->namespace)