diff --git a/routes/web.php b/routes/web.php index 2e39981..0c9394f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -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');