Any way to make checkbox readonly but not disabled ?
Solution
I think you want it disabled but that makes it an ignored field, right?
as a solution use
Toggle::make('is_admin')
->disabled()
->dehydrated()
as a solution use
->dehydrated() as in the docs:Toggle::make('is_admin')
->disabled()
->dehydrated()