© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
32 replies
tuto1902

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
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
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')
  )
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)
->native(false)
from the time picker field also works just fine, which will do fine for now
image.png
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Repeater datas not showing on edit
FilamentFFilament / ❓┊help
2y ago
Manually fill simple repeater data value on edit
FilamentFFilament / ❓┊help
2y ago
Repeater on edit page
FilamentFFilament / ❓┊help
3y ago
Repeater Error on Edit
FilamentFFilament / ❓┊help
3y ago