@@ -141,6 +141,6 @@ class Student extends Model
$duration = strtotime($item->end_date_time) - strtotime($item->begin_date_time);
$total += $duration;
}
- return $total / 60;
+ return floor($total / 60);