File: D:/HostingSpaces/SBogers10/timentessagaantrouwen.nl/routes/web.php
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
//Route::get('/', \App\Http\Controllers\HomeController::class.'@index')->middleware('auth');
Route::get('/', 'QuestionsController@index')->middleware('auth');
Route::post('/questions/store', 'QuestionsController@store')->middleware('auth')->name('questions.store');
Route::get('/bedankt', 'QuestionsController@success')->middleware('auth')->name('questions.success');
Route::get('/send-me-the-goods', 'QuestionsController@sendResponses');
Auth::routes(['register' => false]);