add finish todos list

This commit is contained in:
Romulus21
2024-02-15 21:38:05 +01:00
parent 04b8f7566c
commit 583d128bf8
9 changed files with 90 additions and 10 deletions

View File

@@ -18,7 +18,7 @@ class ToDoResource extends JsonResource
'id' => $this->id,
'user_id' => $this->user_id,
'name' => $this->name,
'checked' => (boolean) $this->checked,
'checked' => $this->checked,
];
}
}