16 lines
446 B
PHP
16 lines
446 B
PHP
<?php
|
|
/**
|
|
* shop.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-08-04 16:17:44
|
|
* @modified 2022-08-04 16:17:44
|
|
*/
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use Plugin\HeaderMenu\Controllers\MenusController;
|
|
|
|
Route::get('/latest_products', [MenusController::class, 'latestProducts'])->name('plugin.latest_products');
|