Поменял роуты для главной и расписания стримов

This commit is contained in:
Dhaverd 2025-06-18 21:43:21 +08:00
parent 37a370f9a6
commit 104d1c8aa6

View File

@ -14,6 +14,10 @@ use Illuminate\Support\Facades\Route;
*/
Route::get('/', function () {
return view('ServiceLinks/links');
});
Route::get('/schedule', function () {
return view('welcome');
});
@ -33,10 +37,6 @@ Route::get('/friday', function () {
return view('friday/friday');
});
Route::get('/services_list', function () {
return view('ServiceLinks/links');
});
Route::get('/download/{file}', 'App\Http\Controllers\DownloadController@download');