mirror of
https://github.com/koel/koel
synced 2024-12-01 08:19:18 +00:00
11 lines
165 B
PHP
11 lines
165 B
PHP
|
<?php
|
||
|
|
||
|
Route::get('/', function () {
|
||
|
return view('index');
|
||
|
});
|
||
|
|
||
|
// Some backward compatibilities.
|
||
|
Route::get('/♫', function () {
|
||
|
return redirect('/');
|
||
|
});
|