您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

34 行
1.5KB

  1. <?php
  2. use App\Util\RouteHelper;
  3. use Illuminate\Support\Facades\Route;
  4. /*
  5. |--------------------------------------------------------------------------
  6. | Web Routes
  7. |--------------------------------------------------------------------------
  8. |
  9. | Here is where you can register web routes for your application. These
  10. | routes are loaded by the RouteServiceProvider and all of them will
  11. | be assigned to the "web" middleware group. Make something great!
  12. |
  13. */
  14. // PDF
  15. RouteHelper::get('/pdf', App\Http\Controllers\PDFController::class);
  16. // 画像取得
  17. RouteHelper::get('/image/season-ticket-contract/{id}', App\Http\Controllers\Web\Image\SeasonTicketContractImageController::class);
  18. // ロボットペイメント画面遷移
  19. RouteHelper::get('/robot-payment/bank-check/register', App\Http\Controllers\Web\RobotPayment\BanckCheck\RegisterController::class);
  20. RouteHelper::get('/robot-payment/creditcard/register/test', App\Http\Controllers\Web\RobotPayment\CreditCard\RegisterTestController::class);
  21. // ロボットペイメント WEBHOOK 決済通知
  22. RouteHelper::get('/robot-payment/payment-info', App\Http\Controllers\Web\RobotPayment\PaymentInfoIndexController::class);
  23. // ロボットペイメント WEBHOOK 自動課金通知
  24. RouteHelper::get('/robot-payment/creditcard/auto-payment-info', App\Http\Controllers\Web\RobotPayment\CreditCard\PaymentResultController::class);
  25. // ルーティングで適合しない場合はフロント側のRoutingにゆだねる
  26. RouteHelper::get('/{any?}', App\Http\Controllers\Web\IndexController::class)->where('any', '.*');