|
- <?php
-
- use App\Util\RouteHelper;
-
- /*
- |--------------------------------------------------------------------------
- | 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!
- |
- */
-
-
- Route::get('pdf', 'App\Http\Controllers\PDFController@index');
-
- RouteHelper::post('/receiptIssuingOrder/create', App\Http\Controllers\Web\ReceiptIssuingOrder\CreateController::class);
-
-
- // 領収証ダウンロード
- RouteHelper::get('/receipt/download', App\Http\Controllers\Web\ReceiptIssuingOrder\DownloadController::class);
- RouteHelper::get('/custom/hello-techno/receipt-letter/download', App\Http\Controllers\Web\Custom\HelloTechno\DownloadLetterController::class);
- RouteHelper::get('/custom/hello-techno/receipt-letters/download', App\Http\Controllers\Web\Custom\HelloTechno\DownloadLettersController::class);
-
- // CSVダウンロード
- RouteHelper::get('/custom/hello-techno/use-summary/csv', App\Http\Controllers\Web\Custom\HelloTechno\UseSummaryCSVController::class);
-
- // ルーティングで適合しない場合はフロント側のRoutingにゆだねる
- RouteHelper::get('/{any?}', App\Http\Controllers\Web\IndexController::class)->where('any', '.*');
|