We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 80c059b + 6799c41 commit c87829bCopy full SHA for c87829b
app/Models/License.php
@@ -14,6 +14,7 @@
14
use Illuminate\Support\Facades\Session;
15
use Watson\Validating\ValidatingTrait;
16
17
+
18
class License extends Depreciable
19
{
20
use HasFactory;
@@ -608,7 +609,7 @@ public static function unReassignableCount($license) : int
608
609
610
$count = 0;
611
if (!$license->reassignable) {
- $count = licenseSeat::query()->where('unreassignable_seat', '=', true)
612
+ $count = LicenseSeat::query()->where('unreassignable_seat', '=', true)
613
->where('license_id', '=', $license->id)
614
->count();
615
}
0 commit comments