alphabetic order of app overview (#10825)

* alphabetic order of app overview

* change sortby to orderby
This commit is contained in:
SourceDoctor
2019-11-16 17:45:45 +01:00
committed by Tony Murray
parent 4aff04041b
commit 75f3a7ff12

View File

@@ -11,7 +11,7 @@ $graph_array_zoom['height'] = '150';
$graph_array_zoom['width'] = '400';
$graph_array['legend'] = 'no';
foreach (Application::query()->hasAccess(Auth::user())->with('device')->get()->groupBy('app_type') as $type => $groupedApps) {
foreach (Application::query()->hasAccess(Auth::user())->with('device')->orderBy('app_type')->get()->groupBy('app_type') as $type => $groupedApps) {
echo '<div style="clear: both;">';
echo '<h2>'.generate_link($groupedApps->first()->displayName(), array('page' => 'apps', 'app' => $type)).'</h2>';
/** @var \Illuminate\Support\Collection $groupedApps */