Laravel - Routing
Identify the error in this route group code:
Route::group(['middleware' => 'auth'], function {
Route::get('profile', function () {
return 'User Profile';
});
});