Forráskód Böngészése

fixed get upcoming appointments

Josh 4 éve
szülő
commit
f2844027ff
1 módosított fájl, 2 hozzáadás és 1 törlés
  1. 2 1
      app/Models/Client.php

+ 2 - 1
app/Models/Client.php

@@ -108,7 +108,8 @@ class Client extends Model
 
     public function upcomingAppointments() {
         return $this->hasMany(Appointment::class, 'client_id', 'id')
-          //  ->where('raw_start_time', '>', date('Y-m-d H:i:s'))
+           // ->where('raw_start_time', '>', date('Y-m-d H:i:s'))
+            ->whereIn('status', ['CREATED', 'CONFIRMED'])
             ->orderBy('start_time', 'desc');
     }