16 lines
416 B
PHP
16 lines
416 B
PHP
<?php
|
|
/**
|
|
* admin.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-04 16:17:53
|
|
* @modified 2022-08-04 16:17:53
|
|
*/
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use Plugin\LatestProducts\Controllers\MenusController;
|
|
|
|
Route::get('/routes', [MenusController::class, 'getRoutes'])->name('routes');
|