Period Lock - Partial Implementation 1 (merge branch dillon/110-period-lock-b through dillon/90-e-invoice-g-0)

This commit is contained in:
Dillon Ngo
2026-01-25 20:49:12 +08:00
parent 7ac97d0cac
commit eb61d81f6b
53 changed files with 1670 additions and 27 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Http\Controllers\Settings;
use App\Classes\Modules\Settings\ControllersLogic\FetchLockLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class FetchLockController
{
/**
* @param Request $request
* @param FetchLockLogic $logic
* @return JsonResponse
*/
public function fetch(Request $request, FetchLockLogic $logic): JsonResponse {
return $logic->execute($request);
}
}