Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?php
-
- namespace App\Http\Controllers\Web\Customer;
-
- use App\Http\Controllers\Web\FromKintoneController;
- use App\Transmissions\HTICWeb\Sender;
- use Illuminate\Http\JsonResponse;
- use Illuminate\Http\Request;
-
- class BeforeUpdateController extends FromKintoneController
- {
-
- public function name(): string
- {
- return "IC定期用 顧客情報更新";
- }
-
- public function description(): string
- {
- return "IC定期用 顧客情報更新";
- }
-
- use Sender;
-
-
- public function __construct(protected BeforeUpdateParam $param)
- {
- parent::__construct();
- }
-
- protected function run(Request $request): JsonResponse
- {
- $param = $this->param;
-
- $res = $this->sendUserUpdate(
- [
- ...$param->toArray(),
- ]
- );
-
- return $this->successResponse($res->json("data"));
- }
- }
|