領収証発行サービス
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

21 lines
670B

  1. <?php
  2. use App\Util\RouteHelper;
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Web Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here is where you can register web routes for your application. These
  9. | routes are loaded by the RouteServiceProvider and all of them will
  10. | be assigned to the "web" middleware group. Make something great!
  11. |
  12. */
  13. // ルーティングで適合しない場合はフロント側のRoutingにゆだねる
  14. Route::get('pdf', 'App\Http\Controllers\PDFController@index');
  15. RouteHelper::get('/{any?}', App\Http\Controllers\Web\IndexController::class)->where('any', '.*');