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.

36 line
784B

  1. <?php
  2. namespace App\Http\Controllers\Web\RobotPayment\BanckCheck;
  3. use App\Http\Controllers\Web\WebController;
  4. use Illuminate\Http\Request;
  5. use Illuminate\Http\Response;
  6. class RegisterController extends WebController
  7. {
  8. public function name(): string
  9. {
  10. return "バンクチェック 登録画面遷移";
  11. }
  12. public function description(): string
  13. {
  14. return "バンクチェック 登録画面遷移";
  15. }
  16. public function __construct(protected RegisterParam $param)
  17. {
  18. $this->middleware('fromKintone');
  19. parent::__construct();
  20. }
  21. protected function run(Request $request): Response
  22. {
  23. $param = $this->param;
  24. return response()->view('robot-payment.bank-check.register', $param->toArray());
  25. }
  26. }