コード例 #1
0
ファイル: Appointment.php プロジェクト: phizaz/se2015-backend
 public static function getLastAppointment($patient_id)
 {
     return array(Appointment::order('time', 'desc')->where('patient_id', $patient_id)->first());
 }