Two month of work

This commit is contained in:
2026-02-17 10:35:03 +01:00
parent 0ffbeeedff
commit d9fd3d1ccb
158 changed files with 5637 additions and 1512 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ class TodoController extends Controller
{
public function index()
{
$todos = Todo::with('type')->get();
$todos = Todo::with('type')->orderBy('due_date')->get();
return ApiDataTransformer::snakeToCamel($todos->toArray());
}