move admin setting ui components from exchange

This commit is contained in:
edmondlang
2021-12-02 18:45:59 +08:00
parent 2c39c66a2d
commit 0bbf0f9138
99 changed files with 4911 additions and 8 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Http\Controllers\Segments;
use App\Classes\Modules\Segments\ControllersLogic\FetchConstantLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class FetchConstantController
{
/**
* @param Request $request
* @param FetchConstantLogic $logic
* @return JsonResponse
*/
public function fetch(Request $request, FetchConstantLogic $logic): JsonResponse {
return $logic->execute($request);
}
}