"Call to undefined method CI_DB_mysqli_result::order_by()" when CodeIgniter's get() is called before order_by()
00:28 06 Jul 2021

I am working with CodeIgniter, Right now I am using following query for getting "banner" data but now I want to fetch with "ORDER BY", how can I do this ? My existing code is this

$data['banner'] = $this->db->get("banner")->result();

And I tried with following code, Where I am wrong ?

$data['banner'] = $this->db->get("banner")->order_by('status',"DESC")->result();
php codeigniter query-builder method-chaining