mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
16 lines
272 B
PHP
16 lines
272 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', function () {
|
|
return view('index');
|
|
});
|
|
|
|
// Some backward compatibilities.
|
|
Route::get('/♫', function () {
|
|
return redirect('/');
|
|
});
|
|
|
|
Route::get('/remote', function () {
|
|
return view('remote');
|
|
});
|