Default at select fields not work
somehow at v3 the default at select field not work
as simple as
it still show "select an option"
as simple as
it still show "select an option"

$this->form->fill() to the mount method?statePathpublic $statuspublic $statusdefault()->default(function () use ($record): ?int {
if ($record->status !== null) {
return $record->status;
}
$enabledStatuses = Status::where([
'status_id' => $record->status_id,
'enabled' => true,
])->get('id');
if ($enabledStatuses->count() === 1) {
return $enabledStatuses->first()->id;
}
return null;
})