Show components in the dashboard index, in order

This commit is contained in:
James Brooks
2015-05-28 08:33:43 +01:00
parent c0db4d883a
commit 7aba6e31ea

View File

@@ -24,7 +24,7 @@ class DashboardController extends AbstractController
*/ */
public function showDashboard() public function showDashboard()
{ {
$components = Component::all(); $components = Component::orderBy('order')->get();
segment_page('Dashboard'); segment_page('Dashboard');