old-hotel-new/routes/web.php

20 lines
655 B
PHP

<?php
use App\Http\Controllers\PrintController;
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!
|
*/
Route::redirect('/', '/admin', 302);
Route::get('/print-const-flow', [PrintController::class, 'showConst']);
Route::get('/print-water-fee', [PrintController::class, 'showWaterFee']);