Laravel - Routing
Identify the error in this route group code:
Route::group(['prefix' => 'api'], function {
Route::get('data', function () {
return 'API Data';
});
});