2016-09-26 06:30:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
Route::get('/', function () {
|
|
|
|
return view('index');
|
|
|
|
});
|
|
|
|
|
|
|
|
// Some backward compatibilities.
|
|
|
|
Route::get('/♫', function () {
|
|
|
|
return redirect('/');
|
|
|
|
});
|
2017-08-27 15:53:17 +00:00
|
|
|
|
|
|
|
Route::get('/remote', function () {
|
|
|
|
return view('remote');
|
|
|
|
});
|