plugins
This commit is contained in:
parent
1cdb67f6dc
commit
3027d85965
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
/**
|
||||
* SettingController.php
|
||||
*
|
||||
* @copyright 2022 opencart.cn - All Rights Reserved
|
||||
* @link http://www.guangdawangluo.com
|
||||
* @author Edward Yang <yangjin@opencart.cn>
|
||||
* @created 2022-06-29 16:02:15
|
||||
* @modified 2022-06-29 16:02:15
|
||||
*/
|
||||
|
||||
namespace Beike\Admin\Http\Controllers;
|
||||
|
||||
class PluginController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* SettingController.php
|
||||
*
|
||||
* @copyright 2022 opencart.cn - All Rights Reserved
|
||||
* @link http://www.guangdawangluo.com
|
||||
* @author Edward Yang <yangjin@opencart.cn>
|
||||
* @created 2022-06-29 16:02:15
|
||||
* @modified 2022-06-29 16:02:15
|
||||
*/
|
||||
|
||||
namespace Beike\Admin\Http\Controllers;
|
||||
|
||||
class SettingController extends Controller
|
||||
{
|
||||
|
||||
}
|
||||
|
|
@ -23,6 +23,9 @@ Route::prefix('admin')
|
|||
Route::put('products/restore', [\Beike\Admin\Http\Controllers\ProductController::class, 'restore']);
|
||||
Route::resource('products', \Beike\Admin\Http\Controllers\ProductController::class);
|
||||
|
||||
Route::get('settings', [\Beike\Admin\Http\Controllers\SettingController::class,'index'])->name('settings.index');
|
||||
Route::get('plugins', [\Beike\Admin\Http\Controllers\PluginController::class,'index'])->name('plugins.index');
|
||||
|
||||
Route::get('logout', [\Beike\Admin\Http\Controllers\LogoutController::class, 'index'])->name('logout.index');
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue