Skip to content

Commit f9a9108

Browse files
tomschlickqschmick
authored andcommitted
order by description and up the page limit to 20 (#75)
1 parent e63b569 commit f9a9108

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Controllers/TasksController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function __construct(TaskInterface $tasks)
3535
public function index()
3636
{
3737
return view('totem::tasks.index', [
38-
'tasks' => $this->tasks->builder()->paginate(10),
38+
'tasks' => $this->tasks->builder()->orderBy('description')->paginate(20),
3939
]);
4040
}
4141

0 commit comments

Comments
 (0)