Explorar o código

fixed get upcoming appointments

Josh %!s(int64=4) %!d(string=hai) anos
pai
achega
cc02eea8c6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      app/Models/Client.php

+ 1 - 1
app/Models/Client.php

@@ -108,7 +108,7 @@ 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'))
             ->orderBy('start_time', 'desc');
     }