TODO / Checklist App
Hi, I want to create a TODO / checklist app. Users should be able to create checklists and add items to these checklists. The items can then be checked off one by one to mark them as completed. What kind of components or elements would be suitable for this? I’ve tried using a repeater, but it doesn’t look very user-friendly.
5 Replies
You could hack something together with
CheckboxList. But honestly: Just some some Livewire for that use case.Why not a table?
You mean via a relation manager in the checklist?
Could do. Or you could use a Table widget.
Or you could use the same table for checklist and itesm, and then do some grouping..
Thanks for your help, I've now solved it using the relation manager. It would be nice, of course, if the checklists could be started on a user-by-user basis. Currently, it's a global checklist.

