Laravel - Routing
Given this route group code, what URL will respond to the
Route::get('profile', ...) route?Route::group(['prefix' => 'user'], function () {
Route::get('profile', function () {
return 'User Profile';
});
});