For example, We assume we want to sum of "price" with "account_name". I can't get right now. You can take a look given example. INPUT: ```php ABCModel::select('account_name')->where('id', '=', $_id)->sum('price'); ``` OUTPUT: ```php 0 => [ "account_name" => "ACCOUNT A", "sum" => 333 ], 1 => [ "account_name" => "ACCOUNT B", "sum" => 85 ], 2 => [ "account_name" => "ACCOUNT C", "sum" => 51 ], ```