author | Jordan Doyle <jordan@doyle.wf> | 2016-06-26 14:02:30.0 +01:00:00 |
---|---|---|
committer | Jordan Doyle <jordan@doyle.wf> | 2016-06-26 14:02:30.0 +01:00:00 |
commit | 99cf13f55f4e02e0fccb427f9e27ea52f613e841 [patch] |
|
tree | 8acbcc148bd6651a18bc1fc69f4b111f045097ae |
|
parent | dcd5c8e71a8fc413c5a21a64229c72500b45df61 |
|
download | 99cf13f55f4e02e0fccb427f9e27ea52f613e841.tar.gz |
fix direction of alphabetical
Diff
app/Http/Controllers/Management/EventTypeController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Management/EventTypeController.php b/app/Http/Controllers/Management/EventTypeController.php index 9775b94..3b68b63 100644 --- a/app/Http/Controllers/Management/EventTypeController.php +++ a/app/Http/Controllers/Management/EventTypeController.php @@ -20,7 +20,7 @@ public function index() { return view('management.event-types', [ 'types' => EventType::orderBy('name', 'desc')->paginate(15) 'types' => EventType::orderBy('name', 'asc')->paginate(15) ]); }