| xqd
@@ -55,7 +55,7 @@ class OrderController extends Controller
|
|
|
['created_at', '<', $end_time],
|
|
|
]);
|
|
|
|
|
|
- $list = $list->paginate()->withPath($this->getPaginateUrl());
|
|
|
+ $list = $list->orderBy('created_at', 'desc')->paginate()->withPath($this->getPaginateUrl());
|
|
|
|
|
|
list($pre_uri, $model, $model_name) = array($this->pre_uri, $this->model, $this->model_name);
|
|
|
|