I want to order a fetched result with two columns, I am currently able to sort by one column. But the requirement is to order by two, I tried using the below code but it returned error.
$parameters["order"] = array("id DESC", "created DESC"); $jobs = Jobs::find($parameters);
Can anybody guide me in the right direction.