Alphabetize saved reports list

This commit is contained in:
Marcus Moore 2023-12-11 16:20:17 -08:00
parent 52028ddef2
commit b9cda88363
No known key found for this signature in database

View file

@ -392,7 +392,7 @@ class ReportsController extends Controller
{
$this->authorize('reports.view');
$customfields = CustomField::get();
$saved_reports = SavedReport::get();
$saved_reports = SavedReport::orderBy('name')->get();
return view('reports/custom', [
'customfields' => $customfields,