Compare commits

..

No commits in common. "master" and "service-list" have entirely different histories.

View File

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