HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/my.esfyn.top/Modules/Shop/Routes/web.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::group([
    'prefix' => 'admin',
    'middleware' => 'admin.auth',
    'namespace' => '\Modules\Shop\Http\Controllers\Admin'
], function () {
    Route::group(['prefix' => 'shop'], function () {

        Route::get('/config', 'ShopConfigController@index')->name('shop.config');
        Route::post('/config', 'ShopConfigController@store');

        Route::get('/category', 'CategoryController@index')->name('shop.category');
        Route::get('/category/edit', 'CategoryController@edit')->name('shop.category.edit');
        Route::post('/category/edit', 'CategoryController@update');
        Route::get('/category/create', 'CategoryController@create')->name('shop.category.create');
        Route::post('/category/create', 'CategoryController@store');
        Route::post('/category/destroy', 'CategoryController@destroy');
        Route::get('/category/metaToGoods', 'CategoryController@metaToGoods')->name('shop.category.metaToGoods');


        Route::get('/goods', 'GoodsController@index')->name('shop.goods');
        Route::get('/goods/edit', 'GoodsController@edit')->name('shop.goods.edit');
        Route::post('/goods/edit', 'GoodsController@update');
        Route::get('/goods/create', 'GoodsController@create')->name('shop.goods.create');
        Route::post('/goods/create', 'GoodsController@store');
        Route::post('/goods/destroy', 'GoodsController@destroy');
        Route::get('/goods/lang', 'GoodsLangController@index')->name('shop.goods.lang');
        Route::get('/goods/lang/edit', 'GoodsLangController@edit')->name('shop.goods.langEdit');
        Route::post('/goods/lang/edit', 'GoodsLangController@update');
        Route::get('/goods/lang/create', 'GoodsLangController@create')->name('shop.goods.langCreate');
        Route::post('/goods/lang/create', 'GoodsLangController@store');
        Route::post('/goods/lang/destroy', 'GoodsLangController@destroy');

        Route::get('/pay/logs', 'PayController@logs')->name('pay.logs');
        Route::get('/pay/config', 'PayController@config')->name('pay.config');
        Route::post('/pay/config', 'PayController@store');


        /* -curd- */

    });
});

Route::group([
    'namespace' => '\Modules\Shop\Http\Controllers\Web'
], function () {
    Route::get('/goods/{id}', 'ShopController@goods')->name('store.goods');
    Route::get('/store', 'ShopController@store')->name('store.index');
    Route::get('/store/page/{page}', 'ShopController@store')->where(['page' => '[0-9]+']);
    Route::get('/store/{cid}', 'ShopController@category')->name('store.category')->where(['cid' => '[0-9]+']);
    Route::get('/store/{cid}/page/{page}', 'ShopController@category')->where(['cid' => '[0-9]+', 'page' => '[0-9]+']);

    Route::group(['middleware' => 'auth'], function () {
        Route::post('/store/create/order', 'ShopController@createOrder')->name('store.create.order');
    });
});