/config/resource: sort resources by name
This commit is contained in:
parent
2a4fdd12d7
commit
9b6b00ebca
|
@ -310,7 +310,10 @@ class ConfigController extends Controller
|
|||
public function resourceAction()
|
||||
{
|
||||
$this->assertPermission('config/application/resources');
|
||||
$this->view->resources = Config::app('resources', true);
|
||||
$this->view->resources = Config::app('resources', true)->getConfigObject()
|
||||
->setKeyColumn('name')
|
||||
->select()
|
||||
->order('name');
|
||||
$this->createApplicationTabs()->activate('resource');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue