KTVRemote/routes/web.php
allen.yan 55666c1475 202508271300
加入首頁,熱門,最新 頁面
2025-08-27 13:03:26 +08:00

20 lines
535 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::view('/', 'welcome');
Route::view('/welcome', 'welcome')->name('welcome');
Route::view('/new-songs', 'new-songs')->name('new-songs');
Route::view('/top-ranking', 'top-ranking')->name('top-ranking');
Route::view('/search-song', 'search-song')->name('search-song');
Route::view('dashboard', 'dashboard')
->middleware(['auth', 'verified'])
->name('dashboard');
Route::view('profile', 'profile')
->middleware(['auth'])
->name('profile');
require __DIR__.'/auth.php';