16 lines
221 B
PHP
16 lines
221 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace App\Features;
|
||
|
|
|
||
|
|
use App\Models\Account;
|
||
|
|
|
||
|
|
class WorkspaceLimit
|
||
|
|
{
|
||
|
|
public function resolve(Account $scope): int
|
||
|
|
{
|
||
|
|
return $scope->plan?->workspace_limit ?? 1;
|
||
|
|
}
|
||
|
|
}
|