What is the simplest way to add a query string to URL in Laravel? Let's say I have a route resources like this
Route::get('/test', function() {
});
Are there just some parameters I can pass through to make the url look like this /test?foo=bar
I'm super new to Laravel and I'm really not looking for something fancy. Thanks!