Step::make('Step two')
->schema(function (Get $get, Set $set, DataService $dataService, $record) {
// $set doesn't work, as the value cannot be updated by the user
return [
TextInput::make('some_row')
->label('some row')
->default($dataService->getValue($record)),
];
});