File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 6767Route::group ([
6868 'middleware ' => env ('REGISTER_AUTH ' ),
6969], function () {
70- URL ::forceScheme ('https ' ); # comment to disable https
70+ # URL::forceScheme('https'); # uncomment to force https
7171Route::get ('/studio/index ' , [UserController::class, 'index ' ])->name ('studioIndex ' );
7272Route::get ('/studio/add-link ' , [UserController::class, 'showButtons ' ])->name ('showButtons ' );
7373Route::post ('/studio/add-link ' , [UserController::class, 'addLink ' ])->name ('addLink ' );
9191Route::group ([
9292 'middleware ' => 'admin ' ,
9393], function () {
94- URL ::forceScheme ('https ' ); # comment to disable https
94+ # URL::forceScheme('https'); # uncomment to force https
9595Route::get ('/panel/index ' , [AdminController::class, 'index ' ])->name ('panelIndex ' );
9696Route::get ('/panel/users/{type} ' , [AdminController::class, 'users ' ])->name ('showUsers ' );
9797Route::post ('/panel/users/{name?} ' , [AdminController::class, 'searchUser ' ])->name ('searchUser ' );
You can’t perform that action at this time.
0 commit comments