Simple repeater values not showing on edit

I'm sure I'm doing something wrong but I can't figure out what.

I have a simple repeater field for a JSON column called times (just a time value eg. 8:00 AM) . The Model casts this field as an array. I can create records and display the value of the times column as a badge on my table, no problem there. But when I click edit. The repeater shows all the imputs but with no values in them

My repeater column definition

Forms\Components\Repeater::make('times')
  ->simple(
      Forms\Components\TimePicker::make('medication_time')
          ->required()
          ->native(false)
          ->seconds(false)
          ->displayFormat('h:i A')
  )


I appreciate all the help I can get.
image.png
image.png
Solution
More specifically, a non-native time picker issue. Removing ->native(false) from the time picker field also works just fine, which will do fine for now
image.png
Was this page helpful?