Files
numstation-web/routes/web.php

29 lines
698 B
PHP
Raw Normal View History

2023-12-22 12:35:55 +08:00
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Route;
use TCG\Voyager\Facades\Voyager;
use Wave\Facades\Wave;
// Authentication routes
Auth::routes();
// Voyager Admin routes
Route::group(['prefix' => 'admin'], function () {
Voyager::routes();
});
// Wave routes
Wave::routes();