Route::get('/', function () { $data = [ ["price" => 10], ["price" => 20], ["price" => 30] ]; return collect($data)->average("price"); });