You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace App\Http\Controllers\Web\RobotPayment\BanckCheck;
-
- use App\Http\Controllers\Web\WebController;
- use Illuminate\Http\Request;
- use Illuminate\Http\Response;
-
- class RegisterController extends WebController
- {
-
- public function name(): string
- {
- return "バンクチェック 登録画面遷移";
- }
-
- public function description(): string
- {
- return "バンクチェック 登録画面遷移";
- }
-
-
- public function __construct(protected RegisterParam $param)
- {
- $this->middleware('fromKintone');
- parent::__construct();
- }
-
- protected function run(Request $request): Response
- {
- $param = $this->param;
-
- return response()->view('robot-payment.bank-check.register', $param->toArray());
- }
- }
|