Skip to content

Commit

Permalink
Sort in theme retrieval in ActieWijzerController
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamieljv committed Nov 15, 2024
1 parent 4a73882 commit 06b1c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/ActieWijzerController.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function landing()
{
$questions = Question::active()->get()->toArray();
$dimensions = Dimension::all()->toArray();
$themes = Theme::all()->toArray();
$themes = Theme::orderBy('name', 'ASC')->all()->toArray();
$result_route = route('actiewijzer.result');

// SEO
Expand Down

0 comments on commit 06b1c9d

Please sign in to comment.