File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -724,7 +724,7 @@ public function freeSeats()
724724 public static function getExpiringLicenses ($ days = 60 )
725725 {
726726
727- return self ::whereNull ('deleted_at ' )
727+ return self ::whereNull ('licenses. deleted_at ' )
728728
729729 // The termination date is null or within range
730730 ->where (function ($ query ) use ($ days ) {
@@ -752,7 +752,7 @@ public static function getExpiringLicenses($days = 60)
752752 public function scopeActiveLicenses ($ query )
753753 {
754754
755- return $ query ->whereNull ('deleted_at ' )
755+ return $ query ->whereNull ('licenses. deleted_at ' )
756756
757757 // The termination date is null or within range
758758 ->where (function ($ query ) {
@@ -768,7 +768,7 @@ public function scopeActiveLicenses($query)
768768 public function scopeExpiredLicenses ($ query )
769769 {
770770
771- return $ query ->whereNull ('deleted_at ' )
771+ return $ query ->whereNull ('licenses. deleted_at ' )
772772
773773 // The termination date is null or within range
774774 ->where (function ($ query ) {
You can’t perform that action at this time.
0 commit comments