mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
20 lines
944 B
PHP
20 lines
944 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
*/
|
|
|
|
Route::prefix('bhdmodulemanager')->group(function() {
|
|
Route::get('/', 'BHDModuleManagerController@index')->name('bhdmodulemanager.index');
|
|
Route::post('/uploadModule', 'BHDModuleManagerController@uploadModule')->name('bhdmodulemanager.uploadModule')->middleware(['permission','prohibited_demo_mode']);
|
|
Route::post('/enable-module', 'BHDModuleManagerController@enableModule')->name('bhdmodulemanager.module.enable');
|
|
Route::post('/disable-module', 'BHDModuleManagerController@disableModule')->name('bhdmodulemanager.module.disable');
|
|
});
|