|
- <?php
-
- use App\Util\RouteHelper;
- use Illuminate\Support\Facades\Route;
-
- /*
- |--------------------------------------------------------------------------
- | Web Routes
- |--------------------------------------------------------------------------
- |
- | Here is where you can register web routes for your application. These
- | routes are loaded by the RouteServiceProvider and all of them will
- | be assigned to the "web" middleware group. Make something great!
- |
- */
-
- // PDF
- RouteHelper::get('/pdf', App\Http\Controllers\PDFController::class);
-
- // 画像取得
- RouteHelper::get('/image/season-ticket-contract/{id}', App\Http\Controllers\Web\Image\SeasonTicketContractImageController::class);
-
- // ロボットペイメント画面遷移
- RouteHelper::get('/robot-payment/bank-check/register', App\Http\Controllers\Web\RobotPayment\BanckCheck\RegisterController::class);
- // BANK CHECK WEBHOOK
- RouteHelper::get('/robot-payment/bank-check/info', App\Http\Controllers\Web\RobotPayment\BanckCheck\PaymentInfoController::class);
-
-
- // ルーティングで適合しない場合はフロント側のRoutingにゆだねる
- RouteHelper::get('/{any?}', App\Http\Controllers\Web\IndexController::class)->where('any', '.*');
|