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\SeasonTicketContract;
-
- use App\Http\Controllers\Web\WebController;
- use Illuminate\Http\JsonResponse;
- use Illuminate\Http\Request;
-
- class ChangePaymentIntervalOrderController extends WebController
- {
-
- public function name(): string
- {
- return "振替頻度変更依頼";
- }
-
- public function description(): string
- {
- return "振替頻度依頼を登録する";
- }
-
-
- public function __construct(protected ChangePaymentIntervalOrderParam $param)
- {
- parent::__construct();
- $this->middleware('auth:sanctum');
- }
-
- protected function run(Request $request): JsonResponse
- {
- return $this->successResponse();
- }
- }
|